Skip to content

Delete .github/workflows/main.yml #43

Delete .github/workflows/main.yml

Delete .github/workflows/main.yml #43

Workflow file for this run

name: Run ESLint on Pull Requests
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run lint