Skip to content

Commit 2549355

Browse files
committed
update libs
1 parent efaa249 commit 2549355

File tree

6 files changed

+1626
-1118
lines changed

6 files changed

+1626
-1118
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Build and deploy
22
on:
33
push:
44
tags:
5-
- 'v*.*.*'
5+
- "v*.*.*"
66
jobs:
77
build:
88
runs-on: ubuntu-latest
99
timeout-minutes: 5
1010
env:
11-
NODE_VERSION: 16
11+
NODE_VERSION: 20
1212
steps:
1313
- name: Сheckout repo
1414
uses: actions/checkout@v2
@@ -45,7 +45,7 @@ jobs:
4545
timeout-minutes: 15
4646
needs: [build]
4747
env:
48-
NODE_VERSION: 16
48+
NODE_VERSION: 20
4949
steps:
5050
- name: Сheckout repo
5151
uses: actions/checkout@v2
@@ -86,8 +86,8 @@ jobs:
8686
- name: Set registry npm packages
8787
uses: actions/setup-node@v1
8888
with:
89-
registry-url: 'https://registry.npmjs.org'
89+
registry-url: "https://registry.npmjs.org"
9090
- name: Publish package to NPM
9191
run: npm publish
9292
env:
93-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
93+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
timeout-minutes: 5
1010
env:
11-
NODE_VERSION: 16
11+
NODE_VERSION: 20
1212
steps:
1313
- name: Сheckout repo
1414
uses: actions/checkout@v2
@@ -46,7 +46,7 @@ jobs:
4646
needs: build
4747
strategy:
4848
matrix:
49-
node-version: [12.x, 14.x, 16.x, 18.x]
49+
node-version: [12.x, 14.x, 16.x, 18.x, 20.x]
5050
steps:
5151
- name: Сheckout repo
5252
uses: actions/checkout@v2
@@ -73,4 +73,4 @@ jobs:
7373
- name: Install dependencies
7474
run: npm ci
7575
- name: Run test
76-
run: npm run cov
76+
run: npm run cov

0 commit comments

Comments
 (0)