Merge pull request #43 from shamilovtim/tshamilov/declarationmaps #28
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
- run: npm install | |
- run: npm run lint | |
- run: npm run build | |
- run: npm run test:only # so we don't run the code coverage badge creation script and let the line below handle it | |
- run: npm run badge:cc:ci # throws if README output differs to README to be checked in (thus detects if tests are not run) | |