Skip to content

[deps]: Update actions/checkout action to v4.2.2 #854

[deps]: Update actions/checkout action to v4.2.2

[deps]: Update actions/checkout action to v4.2.2 #854

Workflow file for this run

name: main
on:
push:
pull_request:
jobs:
# Perform a variety of checks
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Install NodeJS
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint:check