-
Notifications
You must be signed in to change notification settings - Fork 100
45 lines (37 loc) · 1.06 KB
/
validate.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
name: Validate
on:
- push
- pull_request
jobs:
test:
name: Lint & Test
if: (github.event_name != 'pull_request' && !github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork)
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that chromatic can diff against previous commits
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: package.json
- name: Install Dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Build & Test
run: |
pnpm test
pnpm build
pnpm postbuild
- name: Chromatic
run: pnpm storybook:chromatic
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_APP_CODE }}