Skip to content

Bump the all-dependencies group with 2 updates #233

Bump the all-dependencies group with 2 updates

Bump the all-dependencies group with 2 updates #233

Workflow file for this run

name: test
on:
push:
branches:
- 'main'
pull_request:
workflow_dispatch:
defaults:
run:
shell: bash
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [18, 20, 'lts/*']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: npm ci
run: |
npm ci --ignore-scripts
- name: test
run: npm test