Skip to content

Update RTC's Type

Update RTC's Type #89

Workflow file for this run

name: Test
on:
pull_request:
branches:
- develop
push:
branches:
- develop
tags:
- v*
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install jsonschema
- name: Install JavaScript Dependencies
run: npm ci
- name: Test JavaScript
run: npm test
- name: Test Python
run: python test/test.py