trackevery-day/.gitea/workflows/lint.yml
Felix Schulze a144f12c31
All checks were successful
Lint / Lint (push) Successful in 30s
SonarQube Scan / SonarQube Trigger (push) Successful in 1m11s
always lint
2024-09-04 08:43:02 +02:00

28 lines
653 B
YAML

name: Lint
on:
pull_request:
push:
branches:
- "**" # matches every branch
jobs:
eslint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: 20
cache: "npm"
- run: npm i
- uses: sibiraj-s/action-eslint@bcf41bb9abce43cdbad51ab9b3da2eddaa17eab3 # v3.0.1
with:
eslint-args: "--ignore-path=.gitignore --quiet"
extensions: "js,jsx,ts,tsx"
annotations: true
all-files: true