Skip to content

chore(deps): update dependency lint-staged to v15.1.0 #1525

chore(deps): update dependency lint-staged to v15.1.0

chore(deps): update dependency lint-staged to v15.1.0 #1525

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@v3
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
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- run: yarn install --frozen-lockfile --non-interactive
- name: Run build
run: yarn build