Skip to content

Remove Node.js 16 from CI #29

Remove Node.js 16 from CI

Remove Node.js 16 from CI #29

Workflow file for this run

name: Lint
on:
push:
branches:
- master
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