Skip to content

ci: add GitHub Actions workflow for linting #1

ci: add GitHub Actions workflow for linting

ci: add GitHub Actions workflow for linting #1

Workflow file for this run

name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
cache: npm
- run: npm ci
- run: npm test