Skip to content

Bump actions/checkout from 4 to 5 #40

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #40

Workflow file for this run

name: CI
on:
pull_request:
branches:
- 'main'
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test