forked from microsoft/rushstack
-
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.
Merge pull request microsoft#10 from chengcyber/feat-split-workspace-…
…will Feat split workspace will
- Loading branch information
Showing
949 changed files
with
44,969 additions
and
12,101 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,37 +8,56 @@ on: | |
workflow_dispatch: | ||
jobs: | ||
build: | ||
name: Node.js v${{ matrix.NodeVersion }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
NodeVersion: [14, 16] | ||
include: | ||
- NodeVersion: 16 | ||
OS: ubuntu-latest | ||
- NodeVersion: 18 | ||
OS: ubuntu-latest | ||
- NodeVersion: 20 | ||
OS: ubuntu-latest | ||
- NodeVersion: 18 | ||
OS: windows-latest | ||
name: Node.js v${{ matrix.NodeVersion }} (${{ matrix.OS }}) | ||
runs-on: ${{ matrix.OS }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- name: Git config user | ||
run: | | ||
git config --local user.name "Rushbot" | ||
git config --local user.email "[email protected]" | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.NodeVersion }} | ||
|
||
- name: Verify Change Logs | ||
run: node common/scripts/install-run-rush.js change --verify | ||
|
||
- name: Rush Install | ||
run: node common/scripts/install-run-rush.js install | ||
|
||
# - if: runner.os == 'Linux' | ||
# name: Start xvfb | ||
# run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | ||
|
||
- name: Rush retest (install-run-rush) | ||
run: node common/scripts/install-run-rush.js retest --verbose --production | ||
env: | ||
# Prevent time-based browserslist update warning | ||
# See https://github.com/microsoft/rushstack/issues/2981 | ||
BROWSERSLIST_IGNORE_OLD_DATA: 1 | ||
|
||
- name: Ensure repo README is up-to-date | ||
run: node repo-scripts/repo-toolbox/lib/start.js readme --verify | ||
|
||
- name: Rush test (rush-lib) | ||
run: node apps/rush/lib/start-dev.js test --verbose --production --timeline | ||
env: | ||
# Prevent time-based browserslist update warning | ||
# See https://github.com/microsoft/rushstack/issues/2981 | ||
BROWSERSLIST_IGNORE_OLD_DATA: 1 | ||
- name: Ensure repo README is up-to-date | ||
run: node repo-scripts/repo-toolbox/lib/start.js readme --verify |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"name": "rush-redis-cobuild-plugin-integration-test", | ||
"path": "../build-tests/rush-redis-cobuild-plugin-integration-test" | ||
}, | ||
{ | ||
"name": "rush-redis-cobuild-plugin", | ||
"path": "../rush-plugins/rush-redis-cobuild-plugin" | ||
}, | ||
{ | ||
"name": "rush-lib", | ||
"path": "../libraries/rush-lib" | ||
}, | ||
{ | ||
"name": ".vscode", | ||
"path": "../.vscode" | ||
} | ||
] | ||
} |
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.