-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (57 loc) · 1.74 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
68
69
name: 'CI / CD'
on: [push]
jobs:
compile-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Restore cached dependencies
uses: actions/cache@v2
with:
path: |
node_modules
packages/**/node_modules
sandbox/**/node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Dependencies
run: yarn
- name: Compile
run: yarn compile
- name: Lint
run: |
yarn run check
yarn renovate:lint-config
- name: Unit Test
run: yarn test:coverage
- name: Coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Publish
if: ${{github.ref == 'refs/heads/master'}}
run: echo Hello World
- name: Notify Success
if: github.ref == 'refs/heads/master' && success()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: ':tada: ${{ github.ref }} build succeeded :tada:'
SLACK_USERNAME: GH Actions Bot
SLACK_FOOTER: ''
SLACK_COLOR: good
MSG_MINIMAL: 'actions url,commit'
- name: Notify Failure
if: github.ref == 'refs/heads/master' && failure()
uses: rtCamp/action-slack-notify@v2
env:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
SLACK_MESSAGE: ':this_is_fine: ${{ github.ref }} build failed :panic:'
SLACK_USERNAME: GH Actions Bot
SLACK_FOOTER: ''
SLACK_COLOR: '#ff0011'
MSG_MINIMAL: 'actions url,commit'