Botanique/.forgejo/workflows/pr-lint-format.yml
Mylloon e1607112a7
Some checks failed
PR Check / lint-and-format (pull_request) Failing after 11s
Add tests
2024-09-27 12:12:47 +02:00

26 lines
440 B
YAML

name: PR Check
on:
pull_request:
types: [opened, synchronize, reopened]
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
- name: Run tests
run: npm run test