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
8 changes: 5 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
cache-dependency-path: vortex-web/package-lock.json
- run: npm ci
- env:
RUSTFLAGS: --cfg getrandom_backend\"unsupported"
run: npm run wasm
RUSTFLAGS: --cfg getrandom_backend="unsupported"
run: npm run wasm
- run: npm run format:check
- run: npm run lint
- run: npm run typecheck
Expand All @@ -87,7 +87,9 @@ jobs:
cache: "npm"
cache-dependency-path: vortex-web/package-lock.json
- run: npm ci
- run: npm run build
- env:
RUSTFLAGS: --cfg getrandom_backend="unsupported"
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
Expand Down
Loading