Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 2 additions & 36 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ concurrency:
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: "0"
CARGO_PROFILE_DEV_DEBUG: "0"
CARGO_PROFILE_TEST_DEBUG: "0"

jobs:
test:
Expand All @@ -36,18 +38,6 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
node-version: "22"
cache: npm
cache-dependency-path: dashboard/package-lock.json

- name: Build dashboard assets
working-directory: dashboard
run: |
npm ci
npm run build

- uses: dtolnay/rust-toolchain@stable

- name: Cache Cargo
Expand All @@ -72,18 +62,6 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
node-version: "22"
cache: npm
cache-dependency-path: dashboard/package-lock.json

- name: Build dashboard assets
working-directory: dashboard
run: |
npm ci
npm run build

- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
Expand Down Expand Up @@ -242,18 +220,6 @@ jobs:
steps:
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
node-version: "22"
cache: npm
cache-dependency-path: dashboard/package-lock.json

- name: Build dashboard assets
working-directory: dashboard
run: |
npm ci
npm run build

- uses: dtolnay/rust-toolchain@stable

- name: Cache Cargo
Expand Down
Loading