chore: added missing bun test #3
Workflow file for this run
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: "Test Integration" | ||
Check failure on line 1 in .github/workflows/test-integration.yaml GitHub Actions / .github/workflows/test-integration.yamlInvalid workflow file
|
||
on: | ||
workflow_run: | ||
workflow: [Release] | ||
types: | ||
- completed | ||
jobs: | ||
create-fuels-template-integration: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Test Setup | ||
uses: ./.github/actions/test-setup | ||
with: | ||
should-install-bun: true | ||
- name: Run Isolated Tests | ||
run: pnpm test:integration | ||
env: | ||
PUBLISHED_NPM_VERSION: next | ||
- name: Run UI tests | ||
run: sh ./scripts/create-fuels-template-integration.sh | ||
env: | ||
PUBLISHED_NPM_VERSION: next |