Skip to content

chore(deps): update dependency @types/node to v20.17.8 #2663

chore(deps): update dependency @types/node to v20.17.8

chore(deps): update dependency @types/node to v20.17.8 #2663

name: Continuous Integration
on: [push, pull_request]
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive
- name: Run eslint
run: yarn lint
- name: 'Integrity: Verify prettier integrity'
run: yarn format
- name: 'Integrity: Assert no changes (run `yarn format` if this fails)'
run: git diff --exit-code
build:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- run: yarn install --frozen-lockfile --non-interactive
- name: Run build
run: yarn build