Skip to content

build: bump nock from 13.5.4 to 13.5.5 in the development-dependencies group #828

build: bump nock from 13.5.4 to 13.5.5 in the development-dependencies group

build: bump nock from 13.5.4 to 13.5.5 in the development-dependencies group #828

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Use Node.js latest
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: latest
cache: npm
- run: npm ci
- run: npm run format:check
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, latest]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test