-
Notifications
You must be signed in to change notification settings - Fork 27
67 lines (62 loc) · 1.38 KB
/
ci.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
61
62
63
64
65
66
67
name: CI
on:
pull_request:
types: [opened, synchronize]
push:
branches: [4.x]
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0
- name: NodeJS 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: |
yarn install --frozen-lockfile --check-files
yarn --cwd react install --frozen-lockfile --check-files
- uses: actions/cache@v2
id: cache-build
with:
path: ./*
key: ${{ github.sha }}
test:
runs-on: ubuntu-latest
needs: install
steps:
- name: Restore cache
uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- run: yarn --cwd react test
build:
runs-on: ubuntu-latest
needs: install
steps:
- name: Restore cache
uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- run: yarn --cwd react build
publish:
runs-on: ubuntu-latest
needs: [test, build]
steps:
- name: Restore cache
uses: actions/cache@v2
id: restore-build
with:
path: ./*
key: ${{ github.sha }}
- name: Publish release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
CI: true
run: ./publish-release.sh