Merge pull request #1 from dylibso/dependabot/npm_and_yarn/test/esbui… #11
This file contains hidden or 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: Run Tests | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Extism and XTP | |
run: | | |
curl -O https://raw.githubusercontent.com/extism/js-pdk/main/install.sh | |
sh install.sh | |
curl https://static.dylibso.com/cli/install.sh | sh | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
- name: Install TinyGo | |
uses: acifani/setup-tinygo@v1.1.0 | |
with: | |
tinygo-version: 0.31.2 | |
binaryen-version: "116" | |
- name: Install Zig | |
uses: goto-bus-stop/setup-zig@v2 | |
- name: Build suite | |
run: make build | |
- name: Run tests | |
run: make test | |