Skip to content

Update GitHub actions #87

Update GitHub actions

Update GitHub actions #87

Workflow file for this run

name: Check code for errors and style
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
cache: npm
- name: Install dependencies
run: npm ci
- name: Run prettier
run: npm run style
- name: Run eslint
run: npm run lint