Botanique/.forgejo/workflows/pr-lint-format.yml
Mylloon b7cc1565ab
All checks were successful
Lint and Format Check / lint-and-format (pull_request) Successful in 10s
add action
2024-09-04 09:49:17 +02:00

20 lines
346 B
YAML

name: Lint and Format Check
on:
pull_request:
branches: [main, dev]
jobs:
lint-and-format:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run format check
run: npm run format-check