Skip to content

Commit df278d1

Browse files
committed
update actions
1 parent d969cb5 commit df278d1

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci-dev.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16, 18]
19+
node-version: [20, 22, 24]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
name: test - node.js ${{ matrix.node-version }}
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: "npm"
29-
- run: npm ci --package-lock
29+
- run: npm ci
3030
- run: npm test
3131

3232
lint:
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v6
3636
- uses: actions/setup-node@v6
3737
with:
38-
node-version: 16
38+
node-version: 24
3939
cache: "npm"
40-
- run: npm ci --package-lock
41-
- run: npm run lint:ci
40+
- run: npm ci
41+
- run: npm run lint

.github/workflows/ci-main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16, 18]
19+
node-version: [20, 22, 24]
2020
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2121

2222
name: test - node.js ${{ matrix.node-version }}
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: "npm"
29-
- run: npm ci --package-lock
29+
- run: npm ci
3030
- run: npm test
3131

3232
lint:
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v6
3636
- uses: actions/setup-node@v6
3737
with:
38-
node-version: 16
38+
node-version: 24
3939
cache: "npm"
40-
- run: npm ci --package-lock
41-
- run: npm run lint:ci
40+
- run: npm ci
41+
- run: npm run lint

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/checkout@v6
1414
- uses: actions/setup-node@v6
1515
with:
16-
node-version: 16
16+
node-version: 24
1717
cache: "npm"
1818
registry-url: https://registry.npmjs.org/
19-
- run: npm ci --package-lock
19+
- run: npm ci
2020
- run: npm publish --access public
2121
env:
2222
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

0 commit comments

Comments
 (0)