Skip to content

chore: update actions/checkout action to v4.2.2 #1758

chore: update actions/checkout action to v4.2.2

chore: update actions/checkout action to v4.2.2 #1758

Workflow file for this run

on:
push:
branches:
- main
pull_request: {}
name: CI
jobs:
code-lint:
name: Code Lint
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
github.com:443
registry.npmjs.org:443
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 18 # LTS
- name: Install Dependencies
run: npm ci --ignore-scripts
- name: Check Code Lint
run: npm run-script lint