We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b658992 + fff282e commit e907455Copy full SHA for e907455
2 files changed
.github/workflows/ci.yml
@@ -41,6 +41,11 @@ jobs:
41
run: yarn install --frozen-lockfile
42
- name: Run Tests
43
run: yarn node-test-with-coverage
44
+ - uses: codecov/codecov-action@v4
45
+ with:
46
+ fail_ci_if_error: true
47
+ token: ${{ secrets.CODECOV_TOKEN }}
48
+
49
50
floating:
51
name: "Floating Dependencies"
package.json
@@ -24,7 +24,7 @@
24
"scripts": {
25
"lint": "eslint .",
26
"node-test": "mocha test/**/*.js",
27
- "node-test-with-coverage": "nyc --reporter lcov npm run-script node-test && node_modules/.bin/codecov",
+ "node-test-with-coverage": "nyc --reporter lcov npm run-script node-test",
28
"start": "ember serve",
29
"test": "npm run-script lint && npm run-script node-test"
30
},
0 commit comments