Skip to content

Commit c585afe

Browse files
authored
Merge pull request #424 from codecov/2.0.1-fix-deps
fix: Add deep deps
2 parents 672fbdc + 852cffb commit c585afe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+7181
-240
lines changed

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
name: Workflow for Codecov Action
22
on: [push, pull_request]
33
jobs:
4+
no-deps:
5+
runs-on: ${{ matrix.os }}
6+
strategy:
7+
matrix:
8+
os: [macos-latest, windows-latest, ubuntu-latest]
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
- name: Upload coverage to Codecov (script)
13+
uses: ./
14+
with:
15+
files: ./coverage/script/coverage-final.json
16+
flags: script,${{ matrix.os }}
17+
name: codecov-script
18+
- name: Upload coverage to Codecov (demo)
19+
uses: ./
20+
with:
21+
files: ./coverage/calculator/coverage-final.json,./coverage/coverage-test/coverage-final.json
22+
file: ./coverage/coverage-final.json
23+
flags: demo,${{ matrix.os }}
24+
name: codecov-demo
425
run:
526
runs-on: ${{ matrix.os }}
627
strategy:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.1
2+
### Fixes
3+
- #424 fix: Issue in building all deep dependencies
4+
15
## 2.0.0
26
On February 1, 2022, the `v1` uploader will be full sunset and no longer function. This is due
37
to the deprecation of the underlying bash uploader. This version uses the new [uploader](https://github.com/codecov/uploader).

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
deploy:
22
$(eval VERSION := $(shell cat package.json | grep '"version": ' | cut -d\" -f4))
3-
git tag -d v1
4-
git push origin :v1
5-
git tag v1
3+
git tag -d v2
4+
git push origin :v2
5+
git tag v2
66
git tag v$(VERSION) -m ""
77
git push origin --tags

dist/index.js

Lines changed: 138 additions & 233 deletions
Large diffs are not rendered by default.

dist/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node_modules/asn1.js/.eslintrc.js

Lines changed: 27 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node_modules/asn1.js/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node_modules/asn1.js/README.md

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node_modules/asn1.js/lib/asn1.js

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node_modules/asn1.js/lib/asn1/api.js

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)