-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
172 lines (164 loc) · 5.06 KB
/
main.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- name: Typescript - packages
run: yarn tsc
- name: Typescript - test files
run: yarn tsc:test
Linting:
runs-on: ubuntu-latest
needs: Compile
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn tsc
- run: yarn eslint .
- name: Validate package setup
run: |
yarn setup
yarn prettier --write .
git diff --exit-code -- . :^.yarn
Unit:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 20
- 18
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn vitest --run --coverage
- uses: codecov/codecov-action@v5
Integration:
name: Integration Tests
runs-on: ubuntu-latest
needs: Compile
strategy:
fail-fast: false
matrix:
node-version:
- 20
- 18
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn tsc
- name: Integration tests
run: yarn node --test integration/
e2e:
name: End to End build tests
runs-on: ubuntu-latest
needs: Compile
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn tsc
- run: yarn workspaces focus --all --production
- name: Pack the monorepo modules
run: |
mkdir -p /tmp/artifacts
yarn workspace @inquirer/core pack --out /tmp/artifacts/inquirer-core.tgz
yarn workspace @inquirer/prompts pack --out /tmp/artifacts/inquirer-prompts.tgz
yarn workspace @inquirer/figures pack --out /tmp/artifacts/inquirer-figures.tgz
yarn workspace @inquirer/type pack --out /tmp/artifacts/inquirer-type.tgz
yarn workspace @repo/tsconfig pack --out /tmp/artifacts/tsconfig.tgz
- name: Extract @inquirer/demo to an isolated project & build
run: |
cur_dir=$(pwd)
temp_dir=$(mktemp -d)
cp -r packages/demo $temp_dir
cp .yarnrc.yml $temp_dir/demo
cd $temp_dir/demo
yarn set version stable
yarn add --dev @repo/tsconfig@file:/tmp/artifacts/tsconfig.tgz
yarn add @inquirer/core@file:/tmp/artifacts/inquirer-core.tgz
yarn add @inquirer/prompts@file:/tmp/artifacts/inquirer-prompts.tgz
yarn add @inquirer/figures@file:/tmp/artifacts/inquirer-figures.tgz
yarn set resolution @inquirer/type@npm:* file:/tmp/artifacts/inquirer-type.tgz
yarn install
yarn tsc
Package:
name: Are the types wrong?
runs-on: ubuntu-latest
needs: Compile
steps:
- uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: ${{ runner.os }}-turbo-
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- run: yarn install --immutable --immutable-cache
- run: yarn turbo attw