-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (48 loc) · 1.47 KB
/
build.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
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install
run: |
yarn cache clean
yarn install
- name: Build 🔧
run: yarn build
- name: Tests
run: yarn test
- name: Deploy documentation 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: packages/docs/build
if: github.event_name != 'pull_request'
- name: Setting upsteam
run: git push --set-upstream origin master
if: github.event_name != 'pull_request'
- name: Generating coverage badges
uses: jpb06/jest-badges-action@latest
with:
coverage-summary-path: packages/coverage/coverage-summary.json
branches: master,preprod,staging
if: github.event_name != 'pull_request'
- name: Generating the size badge
run: |
node .github/scripts/size-badge.js
git add badges/weight.svg
git commit -m "Generating the size badge"
git push
if: github.event_name != 'pull_request'