Skip to content

Commit a3c6cab

Browse files
committed
7.4.3
1 parent dc4084c commit a3c6cab

File tree

4 files changed

+44
-8
lines changed

4 files changed

+44
-8
lines changed

.github/workflows/master-build.yml

+41-5
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,49 @@ on:
88
branches: [ master, main ]
99

1010
jobs:
11-
build:
11+
test1:
1212
runs-on: ubuntu-latest
1313

1414
strategy:
1515
matrix:
16-
node-version: [12.x, 13.x, 14.x, 15.x, 16.x]
16+
node-version: [12.x, 13.x]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
registry-url: https://registry.npmjs.org/
25+
- run: npm ci
26+
- run: npm test
27+
28+
test2:
29+
needs: [test1]
30+
runs-on: ubuntu-latest
31+
32+
strategy:
33+
matrix:
34+
node-version: [15.x, 16.x]
35+
36+
steps:
37+
- uses: actions/checkout@v2
38+
- name: Use Node.js ${{ matrix.node-version }}
39+
uses: actions/setup-node@v1
40+
with:
41+
node-version: ${{ matrix.node-version }}
42+
registry-url: https://registry.npmjs.org/
43+
- run: npm ci
44+
- run: npm test
45+
46+
build_publish:
47+
needs: [test1, test2]
48+
49+
runs-on: ubuntu-latest
50+
51+
strategy:
52+
matrix:
53+
node-version: [14.x] # 14 is LTS
1754

1855
steps:
1956
- uses: actions/checkout@v2
@@ -28,7 +65,6 @@ jobs:
2865
- run: npm publish
2966
env:
3067
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
31-
with:
32-
node-version: '14'
33-
continue-on-error: true
68+
# continue-on-error: true
69+
3470

jest.setup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// set timeout for tests...
2-
jest.setTimeout(30000);
2+
jest.setTimeout(60000 * 15);

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "restapi-typescript-decorators",
3-
"version": "7.4.2",
3+
"version": "7.4.5",
44
"description": "Decorators that helps reduce the boilderplate code for rest api calls on the frontend and node js",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

0 commit comments

Comments
 (0)