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
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ jobs:
- name: "Unit Tests" - name: "Unit Tests"
run: | run: |
# libxml needs libclang # libxml needs libclang
apt update && apt install clang apt install clang
cargo test -- --skip api cargo test -- --skip api
working-directory: backend working-directory: backend
- name: "Integration Tests" - name: "Integration Tests"
@ -57,7 +57,7 @@ jobs:
working-directory: frontend working-directory: frontend
- name: Typecheck - name: Typecheck
run: npm run typecheck || echo "Failed" run: npm run typecheck
working-directory: frontend working-directory: frontend
- name: Test - name: Test

View file

@ -23,7 +23,7 @@ fmt: fmt-backend fmt-frontend
fmt-check: fmt-check-backend fmt-check-frontend fmt-check: fmt-check-backend fmt-check-frontend
lint: lint-backend lint-frontend typecheck-frontend lint: lint-backend lint-frontend
check: fmt-check lint test check: fmt-check lint test