Skip to content

Setup prettier eslint #1

Setup prettier eslint

Setup prettier eslint #1

Workflow file for this run

name: PR Code checks
on:
pull_request:
branches: [master]
jobs:
lint:
timeout-minutes: 3
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 21
cache: "npm"
- run: npm ci
- name: Run lint
run: npm run lint