Skip to content

Installs project and runs linting #294

Installs project and runs linting

Installs project and runs linting #294

Workflow file for this run

name: lint
run-name: Installs project and runs linting
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: Linting on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- run: npm install
- run: npm run lint