order-able graphs #1324
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: "CI" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-js | |
- name: Run tests | |
run: pnpm test | |
migrate-db: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-js | |
- name: Migrate Database | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL }} | |
NODE_ENV: development | |
run: pnpm web db:deploy | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-js | |
- name: Typecheck | |
run: pnpm typecheck | |
format-lint-biome: | |
name: Format & Lint (Biome) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup-js | |
- name: Check formatting | |
run: pnpm exec biome ci . | |
format-rust: | |
name: Format (Cargo) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Check formatting | |
run: cargo fmt --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-js | |
- uses: ./.github/actions/setup-rust | |
with: | |
target: x86_64-unknown-linux-gnu | |
- name: Install desktop deps | |
uses: ./.github/actions/install-desktop-deps | |
- name: Run Clippy | |
uses: actions-rs-plus/clippy-check@v2 | |
with: | |
args: --workspace --all-features --locked |