Skip to content

fix: update github actions to use node 20 #33

fix: update github actions to use node 20

fix: update github actions to use node 20 #33

Workflow file for this run

name: Run Linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install devDependencies
run: npm ci
- name: Run Linting
run: npm test