Skip to content

Bump actions/setup-node from 6 to 7 in the actions group #22

Bump actions/setup-node from 6 to 7 in the actions group

Bump actions/setup-node from 6 to 7 in the actions group #22

Workflow file for this run

name: Lint Code
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Install node
uses: actions/setup-node@v7
with:
node-version-file: .node-version
cache: npm
- name: Install dependencies
run: npm clean-install --prefer-offline --frozen-lockfile
- name: Run code linter
run: npm run lint