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:
- 'stub/**'
concurrency:
group: ${{ github.workflow }}__${{ github.action }}__${{ github.ref }}
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress: true
jobs:
......
......@@ -5,7 +5,7 @@ on:
workflow_call:
concurrency:
group: ${{ github.workflow }}__${{ github.action }}__${{ github.ref }}
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress: true
jobs:
......
......@@ -47,7 +47,7 @@ on:
value: ${{ jobs.run.outputs.issues }}
concurrency:
group: ${{ github.workflow }}__${{ github.action }}__${{ github.ref }}
group: ${{ github.workflow }}__${{ github.job }}__${{ github.ref }}
cancel-in-progress: true
jobs:
......
......@@ -7,7 +7,7 @@ export const getEnvValue = (envName: string) => {
if (isBrowser() && envs.NEXT_PUBLIC_APP_INSTANCE === 'pw') {
const storageValue = localStorage.getItem(envName);
if (storageValue) {
if (typeof storageValue === 'string') {
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