-
-
Notifications
You must be signed in to change notification settings - Fork 42
53 lines (47 loc) · 1.19 KB
/
ci-cd.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
name: Node CI
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x, 21.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm ci
npm test
env:
CI: true
release:
needs: build
permissions:
id-token: write
if: github.ref == 'refs/heads/master'
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.ACTION_TOKEN }}
- uses: fregante/setup-git-user@v2
- run: git config --global user.name "dependabot"
- name: Use Node.js 21.x
uses: actions/setup-node@v4
with:
node-version: 21.x
registry-url: 'https://registry.npmjs.org'
- name: npm-semver-publish
uses: iuccio/[email protected]
with:
target-branch: 'master'
provenance: true
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}