Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
8fe7c7a0
Unverified
Commit
8fe7c7a0
authored
May 19, 2023
by
Zach Pomerantz
Committed by
GitHub
May 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: notify from notify/test (#6597)
* build: notify from notify/test * debug * debug2 * revert debugs
parent
41113e6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
10 deletions
+20
-10
test.yml
.github/workflows/test.yml
+20
-10
No files found.
.github/workflows/test.yml
View file @
8fe7c7a0
...
@@ -16,6 +16,8 @@ on:
...
@@ -16,6 +16,8 @@ on:
jobs
:
jobs
:
lint
:
lint
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
environment
:
name
:
${{ github.ref_name == 'main' && 'notify/test' }}
steps
:
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/checkout@v3
-
uses
:
./.github/actions/setup
-
uses
:
./.github/actions/setup
...
@@ -30,10 +32,12 @@ jobs:
...
@@ -30,10 +32,12 @@ jobs:
uses
:
./.github/actions/report
uses
:
./.github/actions/report
with
:
with
:
name
:
Lint
name
:
Lint
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
TEST_REPORTER_WEBHOOK
}}
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
WEBHOOK_URL
}}
typecheck
:
typecheck
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
environment
:
name
:
${{ github.ref_name == 'main' && 'notify/test' }}
steps
:
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/checkout@v3
-
uses
:
./.github/actions/setup
-
uses
:
./.github/actions/setup
...
@@ -48,10 +52,12 @@ jobs:
...
@@ -48,10 +52,12 @@ jobs:
uses
:
./.github/actions/report
uses
:
./.github/actions/report
with
:
with
:
name
:
Typecheck
name
:
Typecheck
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
TEST_REPORTER_WEBHOOK
}}
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
WEBHOOK_URL
}}
deps-tests
:
deps-tests
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
environment
:
name
:
${{ github.ref_name == 'main' && 'notify/test' }}
steps
:
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/checkout@v3
-
uses
:
./.github/actions/setup
-
uses
:
./.github/actions/setup
...
@@ -60,10 +66,12 @@ jobs:
...
@@ -60,10 +66,12 @@ jobs:
uses
:
./.github/actions/report
uses
:
./.github/actions/report
with
:
with
:
name
:
Dependency checks
name
:
Dependency checks
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
TEST_REPORTER_WEBHOOK
}}
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
WEBHOOK_URL
}}
unit-tests
:
unit-tests
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
environment
:
name
:
${{ github.ref_name == 'main' && 'notify/test' }}
steps
:
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/checkout@v3
-
uses
:
./.github/actions/setup
-
uses
:
./.github/actions/setup
...
@@ -84,7 +92,7 @@ jobs:
...
@@ -84,7 +92,7 @@ jobs:
uses
:
./.github/actions/report
uses
:
./.github/actions/report
with
:
with
:
name
:
Unit tests
name
:
Unit tests
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
TEST_REPORTER_WEBHOOK
}}
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_
WEBHOOK_URL
}}
build-e2e
:
build-e2e
:
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
...
@@ -115,6 +123,8 @@ jobs:
...
@@ -115,6 +123,8 @@ jobs:
cypress-test-matrix
:
cypress-test-matrix
:
needs
:
[
build-e2e
,
cypress-rerun
]
needs
:
[
build-e2e
,
cypress-rerun
]
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
environment
:
name
:
${{ github.ref_name == 'main' && 'notify/test' }}
container
:
cypress/browsers:node-18.14.1-chrome-111.0.5563.64-1-ff-111.0-edge-111.0.1661.43-1
container
:
cypress/browsers:node-18.14.1-chrome-111.0.5563.64-1-ff-111.0-edge-111.0.1661.43-1
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
...
@@ -167,17 +177,17 @@ jobs:
...
@@ -167,17 +177,17 @@ jobs:
verbose
:
true
verbose
:
true
flags
:
e2e-tests
flags
:
e2e-tests
-
if
:
failure() && github.ref_name == 'main'
uses
:
./.github/actions/report
with
:
name
:
Cypress tests
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_WEBHOOK_URL }}
# Included as a single job to check for cypress-test-matrix success, as a matrix cannot be checked.
# Included as a single job to check for cypress-test-matrix success, as a matrix cannot be checked.
cypress-tests
:
cypress-tests
:
if
:
always()
if
:
always()
needs
:
[
cypress-test-matrix
]
needs
:
[
cypress-test-matrix
]
runs-on
:
ubuntu-latest
runs-on
:
ubuntu-latest
steps
:
steps
:
-
uses
:
actions/checkout@v3
-
if
:
needs.cypress-test-matrix.result != 'success'
-
if
:
needs.cypress-test-matrix.result != 'success'
run
:
exit
1
run
:
exit
1
-
if
:
failure() && github.ref_name == 'main'
uses
:
./.github/actions/report
with
:
name
:
Cypress tests
SLACK_WEBHOOK_URL
:
${{ secrets.SLACK_TEST_REPORTER_WEBHOOK }}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment