We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b96e08 commit 7ceb65fCopy full SHA for 7ceb65f
.github/workflows/e2e-naga.yml
@@ -75,7 +75,17 @@ jobs:
75
uses: actions/download-artifact@v4
76
with:
77
name: build-output
78
- path: .
+ path: build-output
79
+ - name: Restore build artifacts
80
+ run: |
81
+ mkdir -p dist
82
+ mkdir -p packages/wasm/pkg
83
+ if [ -d build-output/dist ]; then
84
+ cp -a build-output/dist/. dist/
85
+ fi
86
+ if [ -d build-output/packages/wasm/pkg ]; then
87
+ cp -a build-output/packages/wasm/pkg/. packages/wasm/pkg/
88
89
- name: Run health check (${{ matrix.network }})
90
run: NETWORK=${{ matrix.network }} pnpm run test:e2e:ci -- packages/e2e/src/e2e.spec.ts
91
timeout-minutes: 10
0 commit comments