Skip to content

chore: cleanup config files #12

chore: cleanup config files

chore: cleanup config files #12

Workflow file for this run

name: Linter
on:
push:
paths:
- '**.ts'
- '**.tsx'
- '**.js'
- '**.jsx'
- 'package.json'
- '.eslintrc.*'
- './playground/**'
pull_request:
paths:
- '**.ts'
- '**.tsx'
- '**.js'
- '**.jsx'
- 'package.json'
- '.eslintrc.*'
- './playground/**'
jobs:
lint-root:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint
lint-playground:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playground
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint