Skip to content

Bump the all group across 1 directory with 4 updates #3226

Bump the all group across 1 directory with 4 updates

Bump the all group across 1 directory with 4 updates #3226

Workflow file for this run

name: Node.js CI
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
operating-system: [ubuntu-latest, windows-2019, macos-latest]
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: ${{ matrix.node-version }}
- run: npm install -g cmake-js@6.3.2
- run: npm install
- name: Environment Information
run: npx envinfo
- name: Run Test
run: npm test
nightly-daily-test:
runs-on: ubuntu-latest
container: node
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- run: npm i -g n && n nightly
- run: node -p process.versions
- name: Environment Information
run: npx envinfo
- run: npm install -g cmake-js@6.3.2
- run: npm install
- name: Environment Information
run: npx envinfo
- name: Run Test
continue-on-error: true
run: npm test