Skip to content

🆙 npm(deps): Bump the npm group with 4 updates #273

🆙 npm(deps): Bump the npm group with 4 updates

🆙 npm(deps): Bump the npm group with 4 updates #273

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Check repository dependency graph
uses: actions/dependency-review-action@72eb03d02c7872a771aacd928f3123ac62ad6d3a # v4.3.3
if: ${{ github.event_name == 'pull_request' }}
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
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