Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix e2e tests #13027

Merged
merged 24 commits into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ jobs:
browser: ['chrome']
wp: ['6.0']
snapshots: [false]
experimental: [false]
# We want to split up the tests into 2 parts running in parallel.
shard: ['1/2', '2/2']
include:
Expand All @@ -154,6 +155,16 @@ jobs:
wp: 'latest'
snapshots: true
shard: '2/2'
- browser: 'chrome'
wp: '6.2-RC2'
snapshots: false
experimental: true
shard: '1/2'
- browser: 'chrome'
wp: '6.2-RC2'
snapshots: false
experimental: true
shard: '2/2'

steps:
- name: Harden Runner
Expand Down Expand Up @@ -183,6 +194,12 @@ jobs:
- name: Install libgbm1
run: sudo apt-get install libgbm1

- name: Setup Node
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version-file: '.nvmrc'
cache: npm

- name: Install dependencies
run: npm install puppeteer
env:
Expand Down
2 changes: 1 addition & 1 deletion babel.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = function (api) {
shippedProposals: true,
targets,
useBuiltIns: 'usage',
corejs: '3.29.0',
corejs: '3.29.1',
},
],
[
Expand Down