-
Notifications
You must be signed in to change notification settings - Fork 4
70 lines (68 loc) · 1.82 KB
/
ci.yaml
File metadata and controls
70 lines (68 loc) · 1.82 KB
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
name: CICD
on:
push:
branches:
- '**'
tags:
- 'v*'
jobs:
test:
name: Node v${{ matrix.node_version }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
experimental:
- false
node_version:
- 16
- 22
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
registry-url: 'https://registry.npmjs.org'
- name: Install npm v8
if: ${{ matrix.node_version <= 12 }}
run: |
npm install -g npm@8
- name: Install Dependencies
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
npm ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Run Tests
run: |
npm run test:ci
publish:
name: Publish (maybe)
runs-on: ubuntu-latest
needs: test
if: |
startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'npm'
- name: Install Dependencies
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
npm whoami
npm ci
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Build & Publish Packages
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
npm whoami
# Publish as beta for pre-release tags like v1.2.3-rc.0 or v1.2.3-pre.1
[[ $GITHUB_REF_NAME =~ ^v.*- ]] && NPM_TAG=--tag=beta
npm publish $NPM_TAG
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}