Skip to content

Bump actions/checkout from 3 to 4 #114

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #114

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 19
cache: "npm"
- name: Install Node packages
run: npm ci
- name: Run lint
run: npm run lint