Skip to content

add CI

add CI #6

Workflow file for this run

name: lint
on: [pull_request]
jobs:
ESlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '21'
- run: npm ci
- run: npm run lint:eslint
Prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '21'
- run: npm ci
- run: npm run lint:prettier