-
Notifications
You must be signed in to change notification settings - Fork 13
71 lines (61 loc) · 1.62 KB
/
test.console.yaml
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 - Console"
on:
pull_request:
branches:
- rc
- main
push:
branches:
- rc
- main
workflow_dispatch:
jobs:
test:
name: "Run Tests"
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Diff Changes
uses: dorny/paths-filter@v3
id: filter
with:
base: ${{ github.ref }}
filters: |
changed:
- "console/**"
- "pluto/**"
- "client/ts/**"
- "freighter/ts/**"
- "x/ts/**"
- ".github/workflows/test.console.yaml"
- name: Set up pnpm
if: steps.filter.outputs.changed == 'true'
uses: pnpm/action-setup@v3
with:
version: 9
- name: Set up Node
if: steps.filter.outputs.changed == 'true'
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install Dependencies
if: steps.filter.outputs.changed == 'true'
run: pnpm install --frozen-lockfile
- name: Turbo Cache
uses: actions/cache@v3
with:
path: .turbo-cache
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Build Pluto
if: needs.setup.outputs.changed == 'true'
run: pnpm build:pluto
- name: Build Drift
if: needs.setup.outputs.changed == 'true'
run: pnpm build:drift
- name: Test
if: steps.filter.outputs.changed == 'true'
run: pnpm test:console