-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update npm dependencies and the GitHub Actions / Travis CI flow. Add a few type annotations to get things working with the newest TypeScript.
- Loading branch information
Showing
17 changed files
with
28,310 additions
and
11,385 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
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 |
---|---|---|
@@ -1,23 +1,22 @@ | ||
language: node_js | ||
cache: | ||
yarn: true | ||
directories: | ||
- ~/.npm | ||
- '$HOME/.deno' | ||
notifications: | ||
email: false | ||
node_js: | ||
- '10' | ||
- '12' | ||
- '14' | ||
- '16' | ||
before_install: # Install Deno | ||
- curl -fsSL https://deno.land/x/install/install.sh | sh | ||
- export PATH="$HOME/.deno/bin:$PATH" | ||
script: | ||
- deno --version # Log the Deno version | ||
- yarn build && yarn test:prod | ||
- npm run build && npm run test:prod | ||
after_success: | ||
- yarn travis-deploy-once "yarn report-coverage" | ||
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then yarn travis-deploy-once "yarn deploy-docs"; fi | ||
- npm run travis-deploy-once "npm run report-coverage" | ||
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then npm run travis-deploy-once "npm run deploy-docs"; fi | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.