chore(deps): update dependency @types/node to v18.19.61 #693
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: Checks | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: styfle/[email protected] | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version-file: .nvmrc | |
- run: yarn install --frozen-lockfile | |
- run: yarn run lint:prettier | |
- run: yarn run lint:eslint | |
- run: yarn run lint:typescript | |
- run: yarn test | |
- name: Check that build is not stale | |
run: | | |
md5sum build/* > md5.txt | |
yarn run build | |
md5sum -c md5.txt || (echo 'Forgot to run `yarn run build`?' && exit 1) |