Skip to content

Run CI on all branches #29

Run CI on all branches

Run CI on all branches #29

Workflow file for this run

name: Lint
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
lint:
name: Lint on Node.js LTS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- run: npm ci
- name: Lint
run: npm run lint