Skip to content

build(deps): bump the github-actions group across 1 directory with 2 updates #897

build(deps): bump the github-actions group across 1 directory with 2 updates

build(deps): bump the github-actions group across 1 directory with 2 updates #897

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