1
1
Fork 0
CCNA_Autofill_Userscript/.gitea/workflows/qs.yml
Snoweuph 25a7e29b20
All checks were successful
QS / QS (push) Successful in 8s
Setup Testing
2024-05-25 12:22:10 +02:00

20 lines
No EOL
466 B
YAML

name: "QS"
on:
push:
branches:
- main
jobs:
qs:
name: "QS"
runs-on: "ubuntu-latest"
container:
image: "git.euph.dev/actions/runner-js-latest:latest"
steps:
- name: "Checkout"
uses: "https://git.euph.dev/actions/checkout@v3"
- name: "Prettier"
run: npm_config_yes=true npx prettier src/ types/ --check --log-level=error
- name: "Run Tests"
run: cd test && npm i --no-fund && npm run test