chore(deps): update dependency json-schema-to-typescript to v13 #883
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Lint and Tests | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node-version: [14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: install dependencies | |
run: | | |
npm install | |
env: | |
CI: true | |
- name: lint files | |
run: | | |
npm run lint | |
env: | |
CI: true | |
- name: style check files | |
run: | | |
npm run style:check | |
env: | |
CI: true | |
- name: typecheck files | |
run: | | |
npm run typecheck | |
env: | |
CI: true | |
- name: check eik json schema is up to date | |
run: | | |
npm run schema:outdated | |
env: | |
CI: true | |
- name: run tests | |
run: | | |
npm test |