diff --git a/.github/workflows/e2e-couchdb.yml b/.github/workflows/e2e-couchdb.yml index cada516eb8..264cae4528 100644 --- a/.github/workflows/e2e-couchdb.yml +++ b/.github/workflows/e2e-couchdb.yml @@ -1,13 +1,17 @@ name: 'e2e-couchdb' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened + schedule: + - cron: '0 0 * * *' jobs: e2e-couchdb: - if: github.event.label.name == 'pr:e2e:couchdb' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:e2e:couchdb') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || github.event.action == 'opened' runs-on: ubuntu-latest timeout-minutes: 60 steps: diff --git a/.github/workflows/e2e-pr.yml b/.github/workflows/e2e-pr.yml index 0e4a8d9a9d..9e2ea8f711 100644 --- a/.github/workflows/e2e-pr.yml +++ b/.github/workflows/e2e-pr.yml @@ -1,13 +1,17 @@ name: 'e2e-pr' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened + schedule: + - cron: '0 0 * * *' jobs: e2e-full: - if: github.event.label.name == 'pr:e2e' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:e2e') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' runs-on: ${{ matrix.os }} timeout-minutes: 60 strategy: diff --git a/.github/workflows/pr-platform.yml b/.github/workflows/pr-platform.yml index 1f1cdfbaa1..e6be244bd1 100644 --- a/.github/workflows/pr-platform.yml +++ b/.github/workflows/pr-platform.yml @@ -1,14 +1,17 @@ name: 'pr-platform' on: + push: + branches: master workflow_dispatch: pull_request: types: - labeled - opened - + schedule: + - cron: '0 0 * * *' jobs: pr-platform: - if: github.event.label.name == 'pr:platform' || github.event.action == 'opened' && github.actor == 'dependabot[bot]' + if: contains(github.event.pull_request.labels.*.name, 'pr:platform') || github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' runs-on: ${{ matrix.os }} timeout-minutes: 60 strategy: diff --git a/e2e/playwright-ci.config.js b/e2e/playwright-ci.config.js index 5335bde352..266ac4a3ab 100644 --- a/e2e/playwright-ci.config.js +++ b/e2e/playwright-ci.config.js @@ -77,7 +77,6 @@ const config = { } ], ['junit', { outputFile: '../test-results/results.xml' }], - ['github'], ['@deploysentinel/playwright'] ] }; diff --git a/package.json b/package.json index bc13c42066..e0a06d6f43 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "eslint-plugin-you-dont-need-lodash-underscore": "6.12.0", "eventemitter3": "1.2.0", "file-saver": "2.0.5", - "flatbush": "4.1.0", + "flatbush": "4.2.0", "git-rev-sync": "3.0.2", "html2canvas": "1.4.1", "imports-loader": "4.0.1", @@ -59,7 +59,7 @@ "prettier": "2.8.7", "printj": "1.3.1", "resolve-url-loader": "5.0.0", - "sanitize-html": "2.10.0", + "sanitize-html": "2.11.0", "sass": "1.63.4", "sass-loader": "13.3.2", "sinon": "15.1.0", @@ -70,7 +70,7 @@ "vue-eslint-parser": "9.3.1", "vue-loader": "15.9.8", "vue-template-compiler": "2.6.14", - "webpack": "5.86.0", + "webpack": "5.88.0", "webpack-cli": "5.1.1", "webpack-dev-server": "4.15.1", "webpack-merge": "5.9.0"