Commit 58e04712 authored by tom's avatar tom

[skip ci] update concurrency group name once more and fix pw tests

parent 0f65f3cd
...@@ -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:
......
...@@ -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:
......
...@@ -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:
......
...@@ -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;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment