Skip to content

chore(deps): pin dependencies #4581

chore(deps): pin dependencies

chore(deps): pin dependencies #4581

Workflow file for this run

name: 'Linting and Testing'
on:
push:
branches: [main]
pull_request:
concurrency:
group: lint-${{ github.head_ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run-tests:
name: 'Run Tests'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- name: Install Node.js and use yarn
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
with:
node-version: '24.18.0'
cache: 'yarn'
- name: Install All Dependencies
run: yarn install --immutable
- name: Check Formatting with Prettier
run: yarn format-check-all
- name: Lint JS with ESLint
run: yarn lint
- name: Lint CSS with Stylelint
run: yarn lint-css
- name: Check TypeScript compilation
run: yarn lint-ts
- name: Run tests
run: yarn test
- name: Build
run: yarn build