Skip to content

Commit 5c65c7e

Browse files
MACBOOKMACBOOK
authored andcommitted
Clean up unwanted dependencies
- Remove coveralls as not used anymore - Add more platform targets for CI/CD
1 parent b1aff44 commit 5c65c7e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,15 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
strategy:
19+
fail-fast: false
1920
matrix:
20-
node-version: [10.x, 12.x, 14.x, 15.x]
21+
node:
22+
- 10
23+
- 12
24+
- 14
25+
- 16
26+
- 18
27+
- lts/*
2128

2229
steps:
2330
- name: Clone repository

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
"@babel/register": "^7.14.5",
4949
"eslint": "^7.29.0",
5050
"colors": "^1.4.0",
51-
"coveralls": "^3.1.1",
5251
"jest": "^27.0.6",
5352
"jest-cli": "^27.0.6",
5453
"webpack": "^5.41.1",
@@ -61,8 +60,7 @@
6160
"scripts": {
6261
"test": "jest",
6362
"build": "webpack",
64-
"cover": "jest --coverage",
65-
"coveralls": "npm run cover && coveralls < coverage/lcov.info"
63+
"cover": "jest --coverage"
6664
},
6765
"readmeFilename": "README.md"
6866
}

0 commit comments

Comments
 (0)