-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(docs): remove references to old API including createTestEnvFile (closes #143) * build(deps): bump lodash from 4.17.15 to 4.17.19 (#147) * build(deps): bump lodash from 4.17.15 to 4.17.19 in /examples/basic (#146) * chore(ci): add node 14 to versions matrix of verify workflow * chore(ci): add cancel previous runs step * chore(ci): switch to codecov custom action now this it does not depend on a docker image * chore(examples): update example dependencies Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
bd94248
commit 10e2be7
Showing
13 changed files
with
2,484 additions
and
2,142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,11 @@ jobs: | |
publish-npm: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
|
@@ -94,11 +99,10 @@ jobs: | |
name: build | ||
path: lib | ||
|
||
# Upload to codecov.io. Curl used in place of codecov/codecov-action | ||
# due to long build time. See https://github.com/codecov/codecov-action/issues/21 | ||
- name: Upload Coverage | ||
if: steps.check.outputs.changed == 'true' | ||
run: bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload' | ||
- name: Upload Test Coverage | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: true | ||
|
||
- name: Create Release | ||
if: steps.check.outputs.changed == 'true' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x] | ||
node-version: [10.x, 12.x, 14.x] | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
|
@@ -59,7 +64,8 @@ jobs: | |
- name: Size Check | ||
run: $(yarn bin)/size-limit | ||
|
||
# Upload to codecov.io. Curl used in place of codecov/codecov-action | ||
# due to long build time. See https://github.com/codecov/codecov-action/issues/21 | ||
- name: Upload Coverage | ||
run: bash <(curl -s https://codecov.io/bash) || echo 'Codecov failed to upload' | ||
- name: Upload Test Coverage | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.