-
Notifications
You must be signed in to change notification settings - Fork 2
119 lines (92 loc) · 2.9 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Koii CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
setup:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn
lint:
needs: setup
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Load node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Run linter for koii
run: yarn lint
test:
needs: setup
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Load node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Run test for koii
run: yarn test
publish_pre_release:
name: "Publish new alpha version"
needs: [test, lint]
runs-on: ubuntu-latest
# only want to run this job when there's a pull request and never when there's a push to the main branch
if: github.repository_owner == 'BolajiOlajide' && github.event_name != 'push'
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14.x
uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Load node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Build
run: yarn build
# In order to make a commit, we need to initialize a user.
# You may choose to write something less generic here if you want, it doesn't matter functionality wise.
- name: Initialize mandatory git config
run: |
git config user.name "BolajiOlajide"
git config user.email "[email protected]"
- name: Bump Prerelease version
run: yarn version --prerelease --preid alpha-${GITHUB_RUN_ID}
- name: get-npm-version
id: package-version
uses: martinbeentjes/npm-get-version-action@master
- name: Publish to NPMJS with yarn
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- name: Comment PR
uses: thollander/actions-comment-pull-request@v1
with:
message: 'Install with: `yarn add koii@${{steps.package-version.outputs.current-version}}`'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}