-
Notifications
You must be signed in to change notification settings - Fork 2.1k
94 lines (89 loc) · 2.48 KB
/
test.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: "tests"
on:
pull_request:
push:
branches:
- master
- beta
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: ['lts/*', '*']
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
check-latest: true
- name: Install Dependencies
run: yarn
- name: Run Tests 👩🏽💻
run: yarn run test
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
check-latest: true
- name: Install Dependencies
run: yarn
- name: Build 🧱
run: yarn run build
Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
check-latest: true
- name: Install Dependencies
run: yarn
- name: Lint ✨
run: yarn run lint
Release:
needs: [Test, Build, Lint]
if: |
(github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta') &&
github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
check-latest: true
- name: Install Dependencies
run: yarn
- name: Build 🗜️
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
export SEMANTIC_RELEASE_NEXT_VERSION=$(npx semantic-release --no-ci --dry-run | grep -oP 'The next release version is \K[0-9]+\.[0-9]+\.[0-9]+')
echo "Next Version: $SEMANTIC_RELEASE_NEXT_VERSION"
yarn run build
if ! git diff --quiet; then
git config --global user.email "<>"
git config --global user.name "GitHub Actions"
git commit -am "📚 docs [skip ci]"
else
echo "Nothing to commit"
fi
- name: Release 🎉
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release