Skip to content

Commit

Permalink
test: github action - removing concurrency cancellation on failure of…
Browse files Browse the repository at this point in the history
… one job
  • Loading branch information
umaranis committed May 15, 2022
1 parent a118863 commit 2eff79d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ on:
- 'demos/richtext-editor/**'
- 'demos/richtext-editor-basic/**'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
e2e-windows:
runs-on: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion demos/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test-e2e-ci:chromium": "cross-env E2E_PORT=4000 start-server-and-test prepare-ci 4000 test-e2e:chromium",
"test-e2e-ci:firefox": "cross-env E2E_PORT=4000 start-server-and-test prepare-ci 4000 test-e2e:firefox",
"test-e2e-ci:webkit": "cross-env E2E_PORT=4000 start-server-and-test prepare-ci 4000 test-e2e:webkit",
"prepare-ci": "npm run build && serve public -l 4000",
"prepare-ci": "pnpm build && serve public -l 4000",
"test-e2e:chromium": "cross-env E2E_BROWSER=chromium playwright test --project=\"chromium\"",
"test-e2e:firefox": "cross-env E2E_BROWSER=firefox playwright test --project=\"firefox\"",
"test-e2e:webkit": "cross-env E2E_BROWSER=webkit playwright test --project=\"webkit\""
Expand Down

0 comments on commit 2eff79d

Please sign in to comment.