Skip to content

More workflow & push template work #14

More workflow & push template work

More workflow & push template work #14

Workflow file for this run

name: ESLint
on:
push:
branches: [ main ]
jobs:
lint:
name: Codestandards
runs-on: ubuntu-latest
steps:
- name: "☁️ checkout repository"
uses: actions/checkout@v4
- name: "🔧 setup node"
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: "⏬ install packages"
run: npm i --omit=optional --include=dev --no-fund --progress=false
- name: "🔍 lint code"
run: npx eslint . --report-unused-disable-directives