Skip to content

Commit 57b0cf8

Browse files
committed
chore: updating pipeline
1 parent fa91f86 commit 57b0cf8

9 files changed

Lines changed: 5427 additions & 356 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [10.x, 12.x]
13+
node-version: [24.x]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v1
17+
uses: actions/setup-node@v4
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- name: install

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Use Node.js
14-
uses: actions/setup-node@v1
14+
uses: actions/setup-node@v4
1515
- name: install
1616
run: npm ci
1717
- name: Lint

.github/workflows/semantic.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
- uses: actions/checkout@master
1717
with:
1818
token: ${{ secrets.GH_TOKEN }}
19-
- uses: actions/setup-node@v1
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version: "10.x"
21+
node-version: "24.x"
2222
- run: printf "//`node -p \"require('url').parse('https://registry.npmjs.org').host\"`/:_authToken=${NPM_TOKEN}\n" >> ~/.npmrc
2323
- run: npm ci
2424
- run: npm run build --if-present
2525
- name: Redis Server in GitHub Actions
2626
uses: supercharge/redis-github-action@1.1.0
2727
- run: npm test
28-
- uses: actions/setup-node@v1
28+
- uses: actions/setup-node@v4
2929
with:
30-
node-version: "16.x"
30+
node-version: "24.x"
3131
- run: npm i -g @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/release-notes-generator semantic-release
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [10.x]
13+
node-version: [24.x]
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Use Node.js ${{ matrix.node-version }}

0 commit comments

Comments
 (0)