Skip to content

0.0.2

0.0.2 #3275

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
strategy:
matrix:
operating_system: [ ubuntu-latest, windows-2019 ]
fail-fast: false # run tests on other operating systems even if one fails
runs-on: ${{ matrix.operating_system }}
steps:
- run: |
git config --global user.name 'AmbNum Bot'
git config --global user.email '[email protected]'
git config --global core.autocrlf false
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: npm ci
- run: npm run validate:schema
- run: npm test