-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (50 loc) · 1.32 KB
/
CICD.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
name: CI CD
on:
push:
branches:
- '**'
tags:
- 'v[0-9]+.[0-9]+.[0-9]+-?*'
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: node --version
- run: npm --version
- run: npm ci
- run: npm run lint:js
- run: npm run lint:ts
publish:
name: Publish
if: startsWith(github.ref, 'refs/tags/v')
needs: test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: node --version
- run: npm --version
- name: Publish to NPM
if: startsWith(github.ref, 'refs/tags/v') && !contains(github.ref, '-')
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish beta to NPM
if: startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-')
run: npm publish --tag=beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}