EMS/.forgejo/workflows/qs.yml
Dominik Säume eeeb3b45b2
Some checks failed
Quality Check / Linting (push) Failing after 4s
Initalize Project
2024-12-18 10:41:33 +01:00

21 lines
402 B
YAML

name: "Quality Check"
on:
- push
- pull_request
jobs:
linting:
name: "Linting"
runs-on: "ubuntu-latest"
container:
image: "git.euph.dev/actions/runner-basic:latest"
steps:
- name: "Checkout"
uses: "https://git.euph.dev/actions/checkout@v3"
- name: "Linting TS"
run: npm run lint:ts
- name: "Linting SCSS"
run: npm run lint:scss