Skip to content

Github actions tweaks #1

Github actions tweaks

Github actions tweaks #1

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
env:
RUNNER_TOOL_CACHE: /toolcache
jobs:
lint_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint:nofix