Skip to content

build(deps-dev): bump eslint from 9.17.0 to 9.18.0 #1167

build(deps-dev): bump eslint from 9.17.0 to 9.18.0

build(deps-dev): bump eslint from 9.17.0 to 9.18.0 #1167

Workflow file for this run

name: Test
on:
push:
pull_request:
permissions: read-all
jobs:
build:
name: Perform tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install & Test
run: |
npm ci
npm run test
- name: Run ESLint
run: |
npm run lint
- name: Run bench tests
run: |
npm run bench
- name: Run Prettier
run: |
npm run format:check
- name: Code Coverage
uses: codecov/codecov-action@v5