Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
frontend
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
vicotor
frontend
Commits
58e04712
Commit
58e04712
authored
Oct 02, 2023
by
tom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[skip ci] update concurrency group name once more and fix pw tests
parent
0f65f3cd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
checks.yml
.github/workflows/checks.yml
+1
-1
e2e-tests.yml
.github/workflows/e2e-tests.yml
+1
-1
label-issues-in-release.yml
.github/workflows/label-issues-in-release.yml
+1
-1
utils.ts
configs/app/utils.ts
+1
-1
No files found.
.github/workflows/checks.yml
View file @
58e04712
...
@@ -14,7 +14,7 @@ on:
...
@@ -14,7 +14,7 @@ on:
-
'
stub/**'
-
'
stub/**'
concurrency
:
concurrency
:
group
:
${{ github.workflow }}__${{ github.
action
}}__${{ github.ref }}
group
:
${{ github.workflow }}__${{ github.
job
}}__${{ github.ref }}
cancel-in-progress
:
true
cancel-in-progress
:
true
jobs
:
jobs
:
...
...
.github/workflows/e2e-tests.yml
View file @
58e04712
...
@@ -5,7 +5,7 @@ on:
...
@@ -5,7 +5,7 @@ on:
workflow_call
:
workflow_call
:
concurrency
:
concurrency
:
group
:
${{ github.workflow }}__${{ github.
action
}}__${{ github.ref }}
group
:
${{ github.workflow }}__${{ github.
job
}}__${{ github.ref }}
cancel-in-progress
:
true
cancel-in-progress
:
true
jobs
:
jobs
:
...
...
.github/workflows/label-issues-in-release.yml
View file @
58e04712
...
@@ -47,7 +47,7 @@ on:
...
@@ -47,7 +47,7 @@ on:
value
:
${{ jobs.run.outputs.issues }}
value
:
${{ jobs.run.outputs.issues }}
concurrency
:
concurrency
:
group
:
${{ github.workflow }}__${{ github.
action
}}__${{ github.ref }}
group
:
${{ github.workflow }}__${{ github.
job
}}__${{ github.ref }}
cancel-in-progress
:
true
cancel-in-progress
:
true
jobs
:
jobs
:
...
...
configs/app/utils.ts
View file @
58e04712
...
@@ -7,7 +7,7 @@ export const getEnvValue = (envName: string) => {
...
@@ -7,7 +7,7 @@ export const getEnvValue = (envName: string) => {
if
(
isBrowser
()
&&
envs
.
NEXT_PUBLIC_APP_INSTANCE
===
'
pw
'
)
{
if
(
isBrowser
()
&&
envs
.
NEXT_PUBLIC_APP_INSTANCE
===
'
pw
'
)
{
const
storageValue
=
localStorage
.
getItem
(
envName
);
const
storageValue
=
localStorage
.
getItem
(
envName
);
if
(
storageValue
)
{
if
(
typeof
storageValue
===
'
string
'
)
{
return
storageValue
;
return
storageValue
;
}
}
}
}
...
...
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