Skip to content

🆙 npm(deps-dev): Bump lint-staged from 16.2.1 to 16.2.3 in the npm group #338

🆙 npm(deps-dev): Bump lint-staged from 16.2.1 to 16.2.3 in the npm group

🆙 npm(deps-dev): Bump lint-staged from 16.2.1 to 16.2.3 in the npm group #338

Workflow file for this run

name: test
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
strategy:
fail-fast: true
matrix:
node-version:
- 20
experimental: [false]
include:
- node-version: lts/*
experimental: true
continue-on-error: ${{ matrix.experimental }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.node-version }}-${{ matrix.experimental }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Check repository dependency graph
uses: actions/dependency-review-action@595b5aeba73380359d98a5e087f648dbb0edce1b # v4.7.3
if: ${{ github.event_name == 'pull_request' }}
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM config
run: |
npm pkg delete scripts.prepare
npm install --ignore-scripts --pure-lockfile
- name: Build
run: npm run build --if-present
- name: Test
run: npm run test --if-present