-
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (24 loc) · 660 Bytes
/
run-tests.yml
File metadata and controls
33 lines (24 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Bun/Wasmtime CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Wasmtime
uses: jcbhmr/setup-wasmtime@v2
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- name: Install Dependencies
run: bun install
- name: Build Transform
run: npm run build:transform
- name: Run Tests
run: bash ./run-tests.sh