-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (77 loc) · 2.16 KB
/
ci.yml
File metadata and controls
81 lines (77 loc) · 2.16 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
71
72
73
74
75
76
77
78
79
80
81
name: Build & Publish
on:
pull_request:
paths-ignore:
- "**.md"
push:
paths-ignore:
- "**.md"
jobs:
build:
strategy:
matrix:
node: [ '16', '18', '20', 'latest' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run lint
- uses: actions/upload-artifact@v4
if: ${{ matrix.node == 'latest' }}
with:
name: dist
path: dist/
publish_npm:
if: github.ref_type == 'tag'
needs: ["build"]
runs-on: ubuntu-latest
environment:
name: "NPM"
url: https://www.npmjs.com/package/${{ github.event.repository.name }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: "16"
- uses: actions/download-artifact@v3
with:
name: dist
- env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish
publish_github:
needs: ["build"]
runs-on: ubuntu-latest
if: github.ref_type == 'tag'
environment:
name: "GitHub Packages"
url: https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/pkgs/npm/${{ github.event.repository.name }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16"
- uses: actions/download-artifact@v3
with:
name: dist
- uses: jossef/action-set-json-field@v2.1
with:
file: package.json
field: name
value: "@${{ github.repository_owner }}/${{ github.event.repository.name }}"
- env:
OWNER: ${{ github.repository_owner }}
NPM_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: |
echo "@${OWNER}:registry=https://npm.pkg.github.com" >> .npmrc
echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc
cat .npmrc
npm publish