Skip to content

add lint workflow

add lint workflow #3

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Install the project
run: npm install
- name: Run lint
run: npm run lint -- --no-fix