Skip to content

Bugfix: package json missing in sdist #75

Bugfix: package json missing in sdist

Bugfix: package json missing in sdist #75

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@v3
- uses: actions/setup-node@v3
with:
node-version: 18
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