-
Notifications
You must be signed in to change notification settings - Fork 1
64 lines (62 loc) · 1.44 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
name: CI
on: [pull_request, push]
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
steps:
- name: Yarn setup
uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
build:
name: Build
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Yarn setup
uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- name: Build
run: yarn build
lint:
name: Lint
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Yarn setup
uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- name: Lint
run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
needs: prepare
steps:
- name: Yarn setup
uses: DerYeger/yarn-setup-action@master
with:
node-version: 16
- name: Test
run: yarn test
release:
name: Release
runs-on: ubuntu-latest
needs: [build, lint, test]
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- name: Checkout
uses: actions/checkout@master
with:
token: ${{ secrets.PAT }}
- name: Semantic release
uses: cycjimmy/semantic-release-action@v4.1.0
with:
extra_plugins: |
@semantic-release/changelog
@semantic-release/git
env:
GITHUB_TOKEN: ${{ secrets.PAT }}