-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update development environment
* Migrate from Travis to GitHub Actions * Replace grunt-istanbul with c8 * Replace grunbt-standard with denolint * Publish automatically using semantic-release
- Loading branch information
Showing
10 changed files
with
1,512 additions
and
2,632 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Test or Release | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
test-or-release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Sources | ||
uses: actions/checkout@v2 | ||
- name: Install Node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 'lts/*' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install PNPM | ||
uses: pnpm/action-setup@v2 | ||
with: | ||
version: '>=6' | ||
run_install: | | ||
- args: [--frozen-lockfile, --no-verify-store-integrity] | ||
- name: Test | ||
run: npm test | ||
- name: Coverage | ||
uses: codecov/codecov-action@v2 | ||
- name: Publish | ||
uses: cycjimmy/semantic-release-action@v2 | ||
with: | ||
semantic_version: 18 | ||
branches: master | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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,4 +1,3 @@ | ||
.DS_Store | ||
coverage | ||
node_modules | ||
npm-debug.log |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.exclude": { | ||
"coverage": true, | ||
"node_modules": true, | ||
"npm-debug.log": true | ||
"**/node_modules": true | ||
}, | ||
"search.exclude": { | ||
"**/coverage": true, | ||
"**/node_modules": 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
## [0.0.3](https://github.com/prantlf/grunt-chromedriver/compare/v0.0.2...v0.0.3) (2021-02-08) | ||
|
||
### Bug Fixes | ||
|
||
* Upgrade to chromedriver 88 ([2973b9e](https://github.com/prantlf/grunt-chromedriver/commit/2973b9e9cf41945913489cfd38f13718126b2e95)) | ||
|
||
## [0.0.2](https://github.com/prantlf/grunt-chromedriver/compare/v0.0.1...v0.0.2) (2020-10-20) | ||
|
||
### Bug Fixes | ||
|
||
* Upgrade to chromedriver 86 ([e41dd68](https://github.com/prantlf/grunt-chromedriver/commit/e41dd68849b11e977abbb621fd4ffc228c989e88)) | ||
|
||
## 0.0.1 (2020-07-26) | ||
|
||
Initial release chromedriver 84 |
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.