Skip to content

chore(deps): update dependency @types/node to v18.19.61 #693

chore(deps): update dependency @types/node to v18.19.61

chore(deps): update dependency @types/node to v18.19.61 #693

Workflow file for this run

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)