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 219c397 commit 56222f2Copy full SHA for 56222f2
.github/workflows/e2e.yml
@@ -64,10 +64,11 @@ jobs:
64
- name: Detect runtime path
65
id: runtime
66
run: |
67
- find ./e2e_tests/artifacts
68
- wasm=$(find ./e2e_tests/artifacts -type f -name '*.wasm' | head -n1)
+ find ./artifacts
+ wasm=$(find ./artifacts -type f -name '*.wasm' | head -n1)
69
echo "Found runtime wasm: $wasm"
70
echo "wasm_path=$wasm" >> $GITHUB_OUTPUT
71
+ working-directory: ./e2e_tests
72
73
- name: Use Node.js
74
uses: actions/setup-node@v4
0 commit comments