Skip to content

chore(deps): update actions/checkout action to v4.2.2 #633

chore(deps): update actions/checkout action to v4.2.2

chore(deps): update actions/checkout action to v4.2.2 #633

Workflow file for this run

name: Checking code quality
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setting up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: .node-version
cache: npm
cache-dependency-path: package-lock.json
- name: npm install
run: npm ci --no-audit --no-fund
- name: build
run: npm run build
- name: lint
run: npm run lint
- name: test
run: npm run test:ci