docs: increase example timeout #127
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 (Bun) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test_bun: | |
name: Test (Bun) | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-bun | |
- uses: ./.github/actions/setup-dfx | |
- name: Build | |
run: bun run build | |
- name: Build Examples | |
run: bun build:examples | |
- name: Test Examples | |
run: bun test:examples |