Skip to content

chore(deps): bump actions/checkout from 4.1.7 to 4.2.2 #167

chore(deps): bump actions/checkout from 4.1.7 to 4.2.2

chore(deps): bump actions/checkout from 4.1.7 to 4.2.2 #167

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Run tests
run: npm run test