Skip to content

🆙 action: Bump the actions group with 3 updates #289

🆙 action: Bump the actions group with 3 updates

🆙 action: Bump the actions group with 3 updates #289

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Check repository dependency graph
uses: actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
if: ${{ github.event_name == 'pull_request' }}
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.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