Skip to content

WIP: Try Automating Code Linting #7

WIP: Try Automating Code Linting

WIP: Try Automating Code Linting #7

Workflow file for this run

name: Lint Code
on:
push:
branches: ["**"]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
- name: "Install Dependencies"
run: npm ci
- name: "Run Linters"
run: npm run lint