-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (56 loc) · 1.83 KB
/
tree-shaking-compat.yaml
File metadata and controls
71 lines (56 loc) · 1.83 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
71
name: Tree-Shaking Compat
on:
workflow_dispatch:
schedule:
- cron: "20 3 * * *"
push:
branches: ["main"]
paths:
- "packages/common/test/TreeShaking.test.ts"
- "packages/common/src/**"
- "package.json"
- "bun.lock"
- ".github/workflows/tree-shaking-compat.yaml"
permissions:
contents: read
concurrency:
group: tree-shaking-compat-${{ github.ref }}
cancel-in-progress: true
jobs:
tree-shaking-compat:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 24
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: "1.3.10"
- name: Install dependencies
run: bun install
- name: Build @evolu/common
run: bunx turbo --filter @evolu/common build
- name: Run tree-shaking compatibility lane
run: bun run test:tree-shaking:compat
tree-shaking-compat-node25:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node.js
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
with:
node-version: 25
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version: "1.3.10"
- name: Install dependencies
run: bun install
- name: Build @evolu/common
run: bunx turbo --filter @evolu/common build
- name: Run tree-shaking compatibility lane (Node 25 compat)
run: bun run test:tree-shaking:compat