Try fixing CI

This commit is contained in:
Andras Schmelczer 2024-12-18 23:24:34 +00:00
parent 1c48b9b51d
commit 5e8fb50670
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 7 additions and 7 deletions

View file

@ -28,7 +28,7 @@ jobs:
- name: Build plugin
run: |
cd ../plugin
cd plugin
npm install
npm run build

View file

@ -20,6 +20,7 @@ jobs:
- name: Setup
run: |
cargo install sqlx-cli
cd backend
sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source sync_server/src/database/migrations --database-url sqlite://db.sqlite3
@ -29,8 +30,7 @@ jobs:
cargo clippy --all-targets --all-features
cargo fmt --all -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Test
run: |
cd backend
cargo test --verbose