-
Notifications
You must be signed in to change notification settings - Fork 36
46 lines (46 loc) · 1.95 KB
/
deploy.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
name: Build and Deploy Cozy-ui
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
# - run: yarn add puppeteer@"21.11.0" -DE --ignore-scripts
- name: Install packages
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Generate Sprite and Palette
run: yarn makeSpriteAndPalette
- name: Build JS
run: yarn build
- name: Build CSS
run: yarn build:css:all
- name: Build docs
run: |
yarn build:doc:react
yarn build:doc:kss
# - name: Tests without snapshots
# run: yarn test:noSnapshots
# - name: Tests snapshots
# run: yarn test:snapshots
# - name: Bundlemon
# run: yarn bundlemon
- name: Argos - Prepare env
run: mkdir ./screenshots
# - run: npx puppeteer browsers install chrome
# - run: cd node_modules/puppeteer/ && yarn exec node install.mjs
- name: Argos - Create desktop screenshots
run: yarn screenshots --mode react --viewport desktop --screenshot-dir ./screenshots/reactDesktop
- name: Argos - Create mobile screenshots
run: yarn screenshots --mode react --viewport 300x600 --screenshot-dir ./screenshots/reactMobile
- name: Argos - Create kss screenshots
run: yarn screenshots --mode kss --screenshot-dir ./screenshots/kss
- name: Argos - Upload all screenshots
run: |
yarn argos:upload --parallel screenshots/reactDesktop/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_JOB --ignore ''
yarn argos:upload --parallel screenshots/reactMobile/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_JOB --ignore ''
yarn argos:upload --parallel screenshots/kss/ --token $ARGOS_TOKEN --parallel-total 3 --parallel-nonce $GITHUB_JOB --ignore ''