Skip to content

Commit e88f389

Browse files
committed
v1.0.13
1 parent 1e998bd commit e88f389

File tree

5 files changed

+6837
-2517
lines changed

5 files changed

+6837
-2517
lines changed

.github/workflows/nodejs.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [main]
99
pull_request:
10-
branches: [ master ]
10+
branches: [main]
1111

1212
jobs:
1313
build:
@@ -16,12 +16,12 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [10.x, 12.x]
19+
node-version: [16.x]
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v1
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm install

.github/workflows/npmpublish.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
17-
node-version: 12
17+
node-version: 16
1818
- run: npm install
1919
- run: npm test
2020

2121
publish-npm:
2222
needs: build
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v2
26-
- uses: actions/setup-node@v1
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-node@v4
2727
with:
28-
node-version: 12
28+
node-version: 16
2929
registry-url: https://registry.npmjs.org/
3030
- run: npm install
3131
- run: npm publish

0 commit comments

Comments
 (0)