-
Notifications
You must be signed in to change notification settings - Fork 1
70 lines (61 loc) · 1.98 KB
/
Copy pathtest.yml
File metadata and controls
70 lines (61 loc) · 1.98 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Test
on:
push:
branches:
- "*"
pull_request:
types: ["opened", "reopened", "synchronize"]
workflow_dispatch:
jobs:
go-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: npm run test:go
wasm-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
name: Install Node
with:
node-version-file: ".node-version"
- name: Install TinyGo
run: |
wget -P ${{ runner.temp }} https://github.com/tinygo-org/tinygo/releases/download/v0.40.1/tinygo_0.40.1_amd64.deb
yes | sudo dpkg -i ${{ runner.temp }}/tinygo_0.40.1_amd64.deb
- run: npm run build
- run: npm pack
- name: Upload
uses: actions/upload-artifact@v7
with:
name: build
path: |
*.wasm
*.tgz
wasm-test:
name: Run ${{ matrix.runtime }} tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
needs: wasm-build
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runtime: [node, deno, bun]
steps:
- uses: actions/checkout@v6
- uses: actions/download-artifact@v8
with:
name: build
- uses: actions/setup-node@v6
if: matrix.runtime == 'node'
with:
node-version-file: ".node-version"
- uses: denoland/setup-deno@v2
if: matrix.runtime == 'deno'
with:
deno-version: 2.x
- uses: oven-sh/setup-bun@v2
if: matrix.runtime == 'bun'
name: Install bun
- run: npm run test:${{ matrix.runtime }}