Skip to content

Commit b0d41b3

Browse files
committed
Create temporal-end-test.yml
1 parent a88d6e8 commit b0d41b3

2 files changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ on:
1515
- genMatrix.js
1616
- ".github/workflows/build-test.yml"
1717

18+
workflow_dispatch:
19+
1820
jobs:
1921
gen-matrix:
2022
name: generate-matrix
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: temporal end-to-end test
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test-3-22:
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
architecture:
12+
- ''
13+
- '-arm'
14+
runs-on: ubuntu-24.04${{ matrix.architecture }}
15+
container:
16+
image: node:26-alpine3.22
17+
steps:
18+
- run: node --version
19+
- run: node -e "console.log(Temporal)"
20+
21+
test-3-23:
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
architecture:
26+
- ''
27+
- '-arm'
28+
runs-on: ubuntu-24.04${{ matrix.architecture }}
29+
container:
30+
image: node:26-alpine3.23
31+
steps:
32+
- run: node --version
33+
- run: node -e "console.log(Temporal)"

0 commit comments

Comments
 (0)