Compare commits

..

1 commit

Author SHA1 Message Date
98638f8c52 Forgejo Action: Run npm and cargo commands in the CI.
Some checks failed
CI / check-backend (pull_request) Failing after 3m22s
CI / check-frontend (pull_request) Failing after 1m22s
2025-09-26 22:39:09 -07:00

View file

@ -26,7 +26,10 @@ jobs:
cargo clippy cargo clippy
working-directory: backend working-directory: backend
- name: "Unit Tests" - name: "Unit Tests"
run: cargo test -- --skip api run: |
# libxml needs libclang
apt install clang
cargo test -- --skip api
working-directory: backend working-directory: backend
- name: "Integration Tests" - name: "Integration Tests"
run: cargo test --test api run: cargo test --test api
@ -55,7 +58,9 @@ jobs:
- name: Typecheck - name: Typecheck
run: npm run typecheck run: npm run typecheck
working-directory: frontend
- name: Test - name: Test
run: npm run test run: npm run test
working-directory: frontend