-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refreshed and improved to support bootstraping of major upgrade PR 🚀 …
…🌬️ (#143) Merge pull request #143 from CoorpAcademy/refreshed-and-improved Huge set of enhancements to the project, with main goals to refresh dependencies and to support the add hoc draft of major bump pull requests - Refreshing 🌬️ - 🚥 test on latest node 522ce7c - 🐙 test on github actions 2701e91 - 📤 bump of major library, replacement of outdated ones (request, bluebird), modern rewrite of async code - New features 🚀 - 🎟️ ability to infer user & retrieve token from gh cli authentification 533384a - 📂 ability to run on a specific folder 90a347a - 🎯 ability to target a specific node version from command line b6329ca - 🛡️ force-with-lease by default (with optional override) d015ab0 - 📝 customizable reviewers and messages 361aeb4 + 197b7b8 - 🚒 preserve original engine range b557b67
- Loading branch information
Showing
29 changed files
with
6,056 additions
and
5,539 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
name: Update node CI | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: | ||
- 18.x | ||
- 20.x | ||
- 22.x | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: git config --global user.email "[email protected]" && git config --global user.name "Update Node" | ||
- run: npm ci | ||
- run: npm test | ||
- name: Upload coverage | ||
uses: codecov/codecov-action@v3 |
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 +1 @@ | ||
v18.17.1 | ||
v20.17.0 |
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.