-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #553 from GluuFederation/branch_merger
feat: update branch merger
- Loading branch information
Showing
5 changed files
with
44 additions
and
46 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Merge master -> version_4.5.1 | ||
- name: Merge master -> version_4.5.4 | ||
uses: devmasx/[email protected] | ||
with: | ||
type: now | ||
|
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 |
---|---|---|
|
@@ -23,31 +23,30 @@ jobs: | |
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x] | ||
node-version: [18.x, 20.x] | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# due to bug in npm we have to add this config | ||
# bugs https://github.com/actions/setup-node/issues/214 https://github.com/npm/cli/issues/2610 | ||
- name: Reconfigure git to use HTTP authentication | ||
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
|
||
- name: Build,Test and Generate coverage report | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
npm test | ||
npm run cover | ||
- name: Upload to codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.lcov | ||
|
||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# due to bug in npm we have to add this config | ||
# bugs https://github.com/actions/setup-node/issues/214 https://github.com/npm/cli/issues/2610 | ||
- name: Reconfigure git to use HTTP authentication | ||
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
|
||
- name: Build,Test and Generate coverage report | ||
run: | | ||
npm ci | ||
npm run build --if-present | ||
npm test | ||
npm run cover | ||
- name: Upload to codecov | ||
uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.lcov |
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 |
---|---|---|
|
@@ -2,31 +2,30 @@ name: Code Linting | |
|
||
on: | ||
push: | ||
branches: [ master ] | ||
branches: [master] | ||
pull_request: | ||
branches: [ master ] | ||
branches: [master] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x | ||
node-version: [18.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
# due to bug in npm we have to add this config | ||
# bugs https://github.com/actions/setup-node/issues/214 https://github.com/npm/cli/issues/2610 | ||
- name: Reconfigure git to use HTTP authentication | ||
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
# due to bug in npm we have to add this config | ||
# bugs https://github.com/actions/setup-node/issues/214 https://github.com/npm/cli/issues/2610 | ||
- name: Reconfigure git to use HTTP authentication | ||
run: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ | ||
|
||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm run lint | ||
- run: npm ci | ||
- run: npm run build --if-present | ||
- run: npm run lint |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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