Skip to content

Bump eslint from 9.37.0 to 9.38.0 #298

Bump eslint from 9.37.0 to 9.38.0

Bump eslint from 9.37.0 to 9.38.0 #298

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
check:
name: Automated checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Setup environment
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: yarn install --immutable
- name: Spellcheck
run: yarn spellcheck
- name: Lint files
run: yarn lint
- name: Run tests
run: yarn test:ci
- name: Run build
run: yarn build