Skip to content

build(deps-dev): bump ava from 6.4.1 to 7.0.0 in the ava group across 1 directory #912

build(deps-dev): bump ava from 6.4.1 to 7.0.0 in the ava group across 1 directory

build(deps-dev): bump ava from 6.4.1 to 7.0.0 in the ava group across 1 directory #912

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24.x'
cache: 'npm'
- run: npm ci
- name: Run tests
run: |
STATUS=0
npm test || STATUS=$?
npm run lint -- --max-warnings=0 || STATUS=$?
exit $STATUS