-
Notifications
You must be signed in to change notification settings - Fork 63
93 lines (75 loc) · 2.13 KB
/
ci.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
# This Action should run on each PR by verifying if they pass on lint, test and build
name: CI
on:
push:
branches-ignore:
- main
jobs:
build:
name: FastStore
timeout-minutes: 15
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9.15.5
cache: 'pnpm'
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: pnpm i
- name: Build
run: pnpm build
- name: Size
run: pnpm size
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Publish to Chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/storybook
buildScriptName: build
onlyChanged: true
exitOnceUploaded: true
exitZeroOnChanges: true
- name: Pack packages
run: |
mkdir -p packed-packages
for package in packages/*; do
if [ -d "$package" ]; then
(cd "$package" && npm pack --pack-destination ../../packed-packages)
fi
done
- name: Clone starter
run: git clone https://github.com/vtex-sites/starter.store.git starter
- name: Install specific Yarn version
run: npm install -g [email protected] # https://github.com/yarnpkg/yarn/issues/9015
- name: Verify Yarn version
run: yarn --version
- name: Install the packages on starter
run: |
cd starter
for package in ../packed-packages/*.tgz; do
yarn add "$package"
done
- name: Install dependencies in starter
run: |
cd starter
yarn install
- name: Build starter
run: |
cd starter
yarn build