Rename jobs #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build, lint & test | |
on: | |
workflow_dispatch: | |
pull_request: | |
merge_group: | |
types: [checks_requested] | |
push: | |
branches: | |
- main | |
env: | |
CARGO_TERM_COLOR: always | |
ASSET_DIR: ${{ github.workspace }}/frontend/dist | |
SQLX_OFFLINE: "true" | |
jobs: | |
backend: | |
name: Backend | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ./backend | |
steps: | |
- uses: actions/checkout@v4 | |
# Build frontend so that it can be included in the backend build | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
working-directory: ./frontend | |
- name: Build | |
run: npm run build | |
working-directory: ./frontend | |
# Compile and test backend | |
- name: Setup Rust | |
shell: bash | |
run: > | |
rustup update stable && | |
rustup default stable && | |
echo RUST_VERSION=$(rustc --version | cut -d' ' -f2) >> $GITHUB_ENV | |
- name: Cargo cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/.crates.toml | |
~/.cargo/.crates2.json | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
./backend/target/ | |
key: ${{ runner.os }}-cargo-${{ env.RUST_VERSION }}-${{ hashFiles('**/Cargo.lock') }} | |
restore-keys: ${{ runner.os }}-cargo-${{ env.RUST_VERSION }}- | |
- name: Check rustfmt | |
run: cargo --verbose --locked fmt --all -- --check | |
- name: Check Clippy with all features | |
run: cargo --verbose --locked clippy --all-targets --all-features -- -D warnings | |
- name: Check Clippy without default features | |
run: cargo --verbose --locked clippy --all-targets --no-default-features -- -D warnings | |
- name: Run tests | |
run: cargo --verbose --locked test | |
- name: Build | |
run: cargo --verbose --locked build --features memory-serve | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: backend-build-${{ matrix.os }} | |
path: ${{ runner.os == 'Windows' && 'backend/target/debug/abacus.exe' || 'backend/target/debug/abacus' }} | |
frontend: | |
name: Frontend | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Check formatting | |
run: npx prettier --check . | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm test | |
- name: Build | |
run: npm run build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: frontend-build | |
path: frontend/dist | |
playwright-ui: | |
name: Playwright UI tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps --no-shell | |
- name: Run UI e2e tests | |
run: npm run e2e:lib-ui | |
playwright-d2d: | |
name: Playwright d2d tests (${{ matrix.os }}, ${{ matrix.shardIndex }}/${{ matrix.shardTotal }}) | |
needs: | |
- backend # frontend is included in backend build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
shardIndex: [1, 2, 3] | |
shardTotal: [3] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: frontend | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps --no-shell | |
- name: Download backend-build | |
uses: actions/download-artifact@v4 | |
with: | |
name: backend-build-${{ matrix.os }} | |
path: builds/backend | |
- name: make backend build executable | |
run: chmod a+x ../builds/backend/abacus | |
if: runner.os != 'Windows' | |
- name: Run DOM to Database e2e tests | |
run: npm run e2e:d2d -- --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} | |
deploy: | |
name: Deploy to abacus-test.nl | |
needs: | |
- backend | |
environment: | |
name: test | |
url: https://${{ github.sha }}.abacus-test.nl | |
permissions: | |
contents: read | |
deployments: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download abacus | |
uses: actions/download-artifact@v4 | |
with: | |
name: backend-build-ubuntu-latest | |
- name: Upload binary to test server | |
run: | | |
curl -s \ | |
-H "Authorization: Bearer ${{ secrets.ABACUS_TEST_API_KEY }}" \ | |
-T ./abacus \ | |
https://abacus-test.nl/etes/api/v1/executable/${{ github.event.pull_request.head.sha || github.sha }}/${{ github.sha }} |