-
-
Notifications
You must be signed in to change notification settings - Fork 130
43 lines (33 loc) · 932 Bytes
/
vrt.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
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: Lost Pixel
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.ACCESS_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
- name: Build packages
run: yarn build:packages
- name: Build Storybook addon
run: yarn build:storybook-addon
- name: Build tokens
run: yarn build:tokens
- name: Build Storybook
run: yarn build:storybook
- name: Install Lost Pixel
run: yarn add lost-pixel
- name: Lost Pixel
uses: lost-pixel/[email protected]
env:
LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }}