-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (57 loc) · 1.51 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
name: Node CI
# Push tests commits; pull_request tests PR merges
on: [ push, pull_request ]
defaults:
run:
shell: bash
jobs:
test:
# Setup
runs-on: ubuntu-latest
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
- name: Install
run: npm i
- name: Run Tests
run: npm test
env:
CI: true
# ----- Only git tag testing + package publishing beyond this point ----- #
# Publish to package registries
publish:
# Setup
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
# Go
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
- name: Install
run: npm i
- name: Run Tests
run: npm test
env:
CI: true
- name: Dist
run: npm run dist
# Publish to npm
- name: Publish @RC to npm
if: contains(github.ref, 'RC')
run: npm publish --tag RC --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish @latest to npm
if: contains(github.ref, 'RC') == false #'!contains()'' doesn't work lol
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}