Skip to content

🆙 npm(deps-dev): Bump the npm group with 4 updates #283

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

🆙 npm(deps-dev): Bump the npm group with 4 updates #283

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths-ignore:
- '*.md'
pull_request:
branches:
- main
paths-ignore:
- '*.md'
jobs:
test-matrix:
runs-on: ubuntu-latest
permissions:
contents: read
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@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
if: ${{ github.event_name == 'pull_request' }}
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: NPM install
run: npm install --ignore-scripts --pure-lockfile
- name: NPM build
run: npm run build --if-present
- name: NPM test
run: npm run test --if-present
test:
runs-on: ubuntu-latest
needs: test-matrix
steps:
- name: Success
run: echo "success"