-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CCI] Don't run tests on PRs with doc changes only (#441)
* don't run coverage tests on doc changes Signed-off-by: Didar Tursunov <[email protected]> * don't run compatability tests on doc changes Signed-off-by: Didar Tursunov <[email protected]> * don't run integrations with unreleased OS test on doc change Signed-off-by: Didar Tursunov <[email protected]> * don't run integration checks on doc change Signed-off-by: Didar Tursunov <[email protected]> * don't run node ci tests on doc changes Signed-off-by: Didar Tursunov <[email protected]> * don't run bundler tests on doc changes Signed-off-by: Didar Tursunov <[email protected]> * Update changelog Signed-off-by: Didar Tursunov <[email protected]> * run tests on backport pushes Signed-off-by: Didar Tursunov <[email protected]> --------- Signed-off-by: Didar Tursunov <[email protected]>
- Loading branch information
Showing
7 changed files
with
56 additions
and
9 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
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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
name: Node CI | ||
|
||
on: [push, pull_request] | ||
# trigger on every commit push and PR for all branches | ||
on: | ||
push: | ||
branches: ['**'] | ||
paths-ignore: | ||
- '**/*.md' | ||
pull_request: | ||
branches: ['**'] | ||
paths-ignore: | ||
- '**/*.md' | ||
|
||
jobs: | ||
test: | ||
|
@@ -27,8 +36,8 @@ jobs: | |
- name: Setup Yarn | ||
run: | | ||
npm uninstall -g yarn | ||
npm i -g [email protected] | ||
npm i -g [email protected] | ||
- name: Lint | ||
if: matrix.node-version == '16.x' | ||
run: | | ||
|
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