-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (65 loc) · 1.79 KB
/
CI-CD.yaml
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
70
71
72
73
74
75
76
77
# GitHub Actions workflow
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions
name: CI-CD
on:
push:
branches:
- "*"
tags-ignore:
- "*"
schedule:
- cron: "0 0 1 * *"
jobs:
test:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- 10
- 12
- 14
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run linters
run: npm run lint -- --fix
- name: Run test
run: npm test
- name: Build the code
run: npm run build
- name: Bundle size check
run: npm run-script bundlesize
deploy:
name: Publish to NPM
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
timeout-minutes: 10
needs: test
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v1
- name: Install dependencies
run: npm ci
- name: Build the code
run: npm run build
- name: Publish to NPM
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_AUTH_TOKEN }}