-
Notifications
You must be signed in to change notification settings - Fork 16
96 lines (77 loc) · 2.25 KB
/
bundling-test.yml
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Bundling Test
on:
pull_request:
push:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: [18, 20]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Check out source code
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install NPM packages
run: npm ci
- name: Build client library
run: npm run build
- name: Ensure Node.js can load the built client library
run: node lib/index.js
- name: Create package tarball
run: npm pack
- name: Upload package tarball
uses: actions/[email protected]
with:
name: client-${{ matrix.node }}.tgz
path: holochain-client-*.tgz
overwrite: true
- name: Setup tmate session if a previous step failed
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout-minutes: 10
bundle-test:
needs: build
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: [18, 20]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Download package tarball
uses: actions/[email protected]
with:
name: client-${{ matrix.node }}.tgz
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Create a Vite project from template
run: npm create vite@latest test-app -- --template vanilla-ts
- name: Add JS client to project
run: |
cd test-app
npm i $(ls ../holochain-client-*.tgz)
- name: Write client import to main.js
run: |
cd test-app
echo 'import * as client from "@holochain/client";' > main.js
- name: Bundle app for production
run: |
cd test-app
npm run build
- name: Setup tmate session if a previous step failed
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
timeout-minutes: 10