EMS/.forgejo/workflows/qs.yml

24 lines
449 B
YAML
Raw Normal View History

2024-12-18 09:35:34 +01:00
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: "NPM install"
run: npm i
- name: "Linting TS"
run: npm run lint:ts
- name: "Linting SCSS"
run: npm run lint:scss