Skip to content

edit workflows to only run on push #96

edit workflows to only run on push

edit workflows to only run on push #96

Workflow file for this run

name: Run ESLint
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- "*"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run ESLint
run: npm run lint