Skip to content

Commit efd4dd4

Browse files
authored
Bump dev deps and CI action setup-node (#162)
1 parent a5f8887 commit efd4dd4

File tree

5 files changed

+16
-11
lines changed

5 files changed

+16
-11
lines changed

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020

2121
- name: Use Node.js 20.x
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: 20.x
2525
- run: npm install
@@ -47,7 +47,7 @@ jobs:
4747
uses: actions/checkout@v4
4848

4949
- name: Build & Test with Node.js ${{ matrix.node-version }}
50-
uses: actions/setup-node@v3
50+
uses: actions/setup-node@v4
5151
with:
5252
node-version: ${{ matrix.node-version }}
5353

.github/workflows/npm-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v3
14+
- uses: actions/setup-node@v4
1515
with:
1616
node-version: 20
1717
- run: npm install
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- uses: actions/checkout@v4
30-
- uses: actions/setup-node@v3
30+
- uses: actions/setup-node@v4
3131
with:
3232
node-version: 20
3333
registry-url: https://registry.npmjs.org/

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/generated-snapshots
33

44
*.idea
5-
*.vscode
65
*.coveralls*
76
coverage.html
87
coverage

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"sonarlint.connectedMode.project": {
3+
"connectionId": "switcherapi",
4+
"projectKey": "switcherapi_switcher-client-master"
5+
}
6+
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Client JS SDK for working with Switcher-API",
55
"main": "./src/index.js",
66
"types": "./src/index.d.ts",
7-
"author": {
7+
"author": {
88
"name": "Roger Floriano",
99
"email": "switcher.project@gmail.com",
1010
"url": "https://github.com/petruki"
@@ -31,13 +31,13 @@
3131
"node-fetch": "^2.7.0"
3232
},
3333
"devDependencies": {
34-
"@typescript-eslint/eslint-plugin": "^6.15.0",
35-
"@typescript-eslint/parser": "^6.15.0",
34+
"@typescript-eslint/eslint-plugin": "^7.1.0",
35+
"@typescript-eslint/parser": "^7.1.0",
3636
"babel-eslint": "^10.1.0",
37-
"chai": "^4.3.10",
37+
"chai": "^4.4.1",
3838
"chai-as-promised": "^7.1.1",
39-
"eslint": "^8.56.0",
40-
"mocha": "^10.2.0",
39+
"eslint": "^8.57.0",
40+
"mocha": "^10.3.0",
4141
"mocha-sonarqube-reporter": "^1.0.2",
4242
"nyc": "^15.1.0",
4343
"sinon": "^17.0.1"

0 commit comments

Comments
 (0)