-
Notifications
You must be signed in to change notification settings - Fork 602
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update branch policies and pipelines for pull requests on archive (#6920
) * update branch policies and pipelines for pull requests on archive * setup node * remove code climate --------- Co-authored-by: Christopher Holt <=>
- Loading branch information
1 parent
8a2bf65
commit 2bebec0
Showing
3 changed files
with
22 additions
and
23 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 |
---|---|---|
|
@@ -3,11 +3,11 @@ name: Validate PRs | |
on: | ||
push: | ||
branches: | ||
- master | ||
- archives/fast-element-1 | ||
- releases/* | ||
pull_request: | ||
branches: | ||
- master | ||
- archives/fast-element-1 | ||
- releases/* | ||
- features/* | ||
|
||
|
@@ -20,6 +20,10 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.20.0 | ||
|
||
- name: Get yarn cache directory path | ||
id: yarn-cache-dir-path | ||
run: echo '::set-output name=dir::$(yarn cache dir)' | ||
|
@@ -51,18 +55,5 @@ jobs: | |
- name: Testing unit tests | ||
run: yarn lerna run test --stream | ||
|
||
- name: Collect and upload code coverage to Code Climate | ||
uses: paambaati/[email protected] | ||
env: | ||
CC_TEST_REPORTER_ID: 08a773cb4ea5811add5a45e12873e5cd2634c005568705cc37abfd5217617a32 | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
coverageCommand: yarn lerna run coverage | ||
coverageLocations: | | ||
${{github.workspace}}/packages/tooling/fast-figma-plugin-msft/coverage/lcov.info:lcov | ||
${{github.workspace}}/packages/utilities/fast-colors/coverage/lcov.info:lcov | ||
${{github.workspace}}/packages/utilities/fast-eslint-rules/coverage/lcov.info:lcov | ||
debug: false | ||
|
||
- name: Testing final validation | ||
run: yarn test:validation |
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