Skip to content

🆙 npm(deps-dev): Bump husky from 9.1.4 to 9.1.5 in the npm group (#127) #280

🆙 npm(deps-dev): Bump husky from 9.1.4 to 9.1.5 in the npm group (#127)

🆙 npm(deps-dev): Bump husky from 9.1.4 to 9.1.5 in the npm group (#127) #280

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@5a2ce3f5b92ee19cbb1541a4984c76d921601d7c # v4.3.4
if: ${{ github.event_name == 'pull_request' }}
- name: Setup Node.js v${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
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