-
Notifications
You must be signed in to change notification settings - Fork 78
88 lines (71 loc) · 2.09 KB
/
release.yml
File metadata and controls
88 lines (71 loc) · 2.09 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# This Action should run on main and dev branches and verify lint, test, and then publish the version on npm
name: CD
on:
push:
branches:
- main
- dev
- 3.x
permissions:
id-token: write # Required for OIDC
contents: write # Required for lerna to commit version changes
jobs:
build:
name: FastStore
timeout-minutes: 15
runs-on: ubuntu-latest
# To use Remote Caching, uncomment the next lines and follow the steps below.
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v6
with:
token: ${{ secrets.VTEX_GITHUB_BOT_TOKEN }}
fetch-depth: 2
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10.28.0
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 24.13.0
cache: "pnpm"
registry-url: "https://registry.npmjs.org"
- name: Upgrade npm for OIDC support
run: npm install -g npm@latest
- name: Configure CI Git User
run: |
git config user.name vtexgithubbot
git config user.email vtexgithubbot@github.com
- 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 (main)
if: github.ref_name == 'main'
run: pnpm release
- name: Publish (dev)
if: github.ref_name == 'dev'
run: pnpm release:dev
- name: Publish (3.x)
if: github.ref_name == '3.x'
run: pnpm release:v3
- name: Publish to Chromatic
if: github.ref_name != '3.x'
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
workingDir: packages/storybook
buildScriptName: build
onlyChanged: true
exitOnceUploaded: true
exitZeroOnChanges: true