-
Notifications
You must be signed in to change notification settings - Fork 5
76 lines (58 loc) · 2.02 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
# Continuous integration - validate builds when commits are made, and publish when releases are created.
#
name: "Continuous Integration"
# Run the build on all push, pull request, and release creation events.
on:
pull_request:
push:
release:
types: [ created ]
jobs:
# Run a validation build on LTS versions of node.
validate-build:
# Build only if we've received a push event.
if: github.event_name == 'push'
# Create the build matrix for all the environments we're validating against.
strategy:
matrix:
node-version: [ 12.x, 14.x ]
os: [ ubuntu-latest ]
# Specify the environments we're going to build in.
runs-on: ${{ matrix.os }}
# Execute the build activities.
steps:
- name: Checkout the repository.
uses: actions/checkout@v2
- name: Setup the node ${{ matrix.node-version }} environment.
uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
- name: Build and install the package with a clean slate.
run: |
npm ci
npm run build --if-present
env:
CI: true
# Publish the release to the NPM registry.
publish-npm:
# Publish only if we've received a release event and the tag starts with "v" (aka v1.2.3).
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v')
# Specify the environment we're going to build in.
runs-on: ubuntu-latest
# Execute the build and publish activities.
steps:
- name: Checkout the repository.
uses: actions/checkout@v2
- name: Setup the node environment.
uses: actions/[email protected]
with:
# Use the oldest node LTS version that we support.
node-version: '12.x'
# Use the NPM registry.
registry-url: 'https://registry.npmjs.org/'
- name: Install the package with a clean slate.
run: npm ci
- name: Publish the package to NPM.
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}