Botanique/.forgejo/workflows/pr-check.yml
Mylloon 23446eb399
All checks were successful
Publish latest version / build (push) Successful in 2m4s
fix: SQL import in Docker images (#202)
Also don't compile tests

Reviewed-on: #202
Co-authored-by: Mylloon <kennel.anri@tutanota.com>
Co-committed-by: Mylloon <kennel.anri@tutanota.com>
2024-11-02 18:26:01 +01:00

26 lines
443 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 ci
- name: Run lint
run: npm run lint
- name: Run format check
run: npm run format-check
- name: Run tests
run: npm run test -- --ci