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 4cfef5d commit 596be78Copy full SHA for 596be78
.github/workflows/as-test.yml
@@ -1,4 +1,4 @@
1
-name: AST CI
+name: Bun/Wasmtime CI
2
3
on: [push, pull_request]
4
@@ -13,12 +13,14 @@ jobs:
13
- name: Install Wasmtime
14
uses: jcbhmr/setup-wasmtime@v2
15
16
- - name: Setup Node.js
17
- uses: actions/setup-node@v4
+ - name: Setup Bun
+ uses: oven-sh/setup-bun@v1
18
19
- name: Install dependencies
20
- if: steps.node-cache.outputs.cache-hit != 'true'
21
- run: yarn
+ run: bun install
22
23
- - name: Perform tests
+ - name: Build tests
+ run: bun run pretest
24
+
25
+ - name: Run tests
26
run: bun run test
0 commit comments