Update actions

This commit is contained in:
Andras Schmelczer 2025-06-15 14:46:58 +01:00
parent 4851e85986
commit 0b53cbba19
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 4 additions and 82 deletions

View file

@ -12,7 +12,7 @@ env:
jobs: jobs:
build: build:
runs-on: self-hosted runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -26,42 +26,20 @@ jobs:
- name: Setup rust - name: Setup rust
run: | run: |
cargo install sqlx-cli wasm-pack cargo-machete cargo install sqlx-cli wasm-pack cargo-machete
cd backend
sqlx database create --database-url sqlite://db.sqlite3 sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3 sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3
- name: Build wasm - name: Build wasm
run: | run: |
cd backend wasm-pack build --target web
wasm-pack build --target web sync_lib
- name: Lint backend - name: Lint
run: | run: |
cd backend
cargo clippy --all-targets --all-features cargo clippy --all-targets --all-features
cargo fmt --all -- --check cargo fmt --all -- --check
cargo machete cargo machete
- name: Test backend - name: Test
run: | run: |
cd backend
cargo test --verbose -- --include-ignored cargo test --verbose -- --include-ignored
cd sync_lib
wasm-pack test --node wasm-pack test --node
- name: Lint frontend
run: |
cd frontend
npm ci
npm run build
npm run lint
if [[ $(git status --porcelain) ]]; then
git status --porcelain
echo "Failing CI because the working directory is not clean after linting"
exit 1
fi
- name: Test frontend
run: |
cd frontend
npm run test

View file

@ -1,56 +0,0 @@
name: E2E tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4.2.0
with:
node-version: "22.x"
check-latest: true
- name: Setup rust
run: |
cargo install sqlx-cli wasm-pack
cd backend
sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source sync_server/src/app_state/database/migrations --database-url sqlite://db.sqlite3
- name: Build wasm
run: |
cd backend
wasm-pack build --target web sync_lib
- name: E2E tests
run: |
cd backend
cargo run -p sync_server config-e2e.yml --color never &
cd ..
scripts/update-api-types.sh
cd frontend
npm ci
npm run build
npm run lint
if [[ $(git status --porcelain) ]]; then
git status --porcelain
echo "Failing CI because the working directory is not clean after updating the API types"
exit 1
fi
cd ..
scripts/e2e.sh 32