-
Notifications
You must be signed in to change notification settings - Fork 15
73 lines (61 loc) · 1.74 KB
/
integration-ts.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
71
72
73
name: "Integration: TypeScript Packages"
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
jobs:
diff:
runs-on: ubuntu-latest
outputs:
constants: ${{ steps.diff.outputs.constants }}
helpers: ${{ steps.diff.outputs.helpers }}
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Diff the files"
uses: dorny/paths-filter@v2
id: diff
with:
base: "main"
filters: |
constants:
- "packages/constants/**"
helpers:
- "packages/helpers/**"
integration-constants:
if: ${{ needs.diff.outputs.constants == 'true' }}
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Install Node.js"
uses: "actions/setup-node@v2"
with:
cache: "yarn"
node-version: "16"
- name: "Install the dependencies"
run: "yarn install --immutable"
- name: "Lint the code"
run: "yarn workspace @hifi/constants lint"
- name: "Build the package"
run: "yarn workspace @hifi/constants build"
integration-helpers:
if: ${{ needs.diff.outputs.helpers == 'true' }}
runs-on: "ubuntu-latest"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v2"
- name: "Install Node.js"
uses: "actions/setup-node@v2"
with:
cache: "yarn"
node-version: "16"
- name: "Install the dependencies"
run: "yarn install --immutable"
- name: "Lint the code"
run: "yarn workspace @hifi/helpers lint"
- name: "Build the package"
run: "yarn workspace @hifi/helpers build"