Skip to content

Commit 97ffee4

Browse files
fix: firefox test integration environment (#5742)
* fix: fix firefox test integration env * chore: test ubuntu apt source * chore: IMMUTABLE_INSTALLS ? * fix: ubuntu version
1 parent c9d9471 commit 97ffee4

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ permissions:
1010
jobs:
1111
ci:
1212
name: ${{ matrix.command }}
13-
runs-on: ubuntu-latest
13+
# Pin the version to avoid dependency installation issues
14+
runs-on: ubuntu-22.04
1415
strategy:
1516
matrix:
1617
command:

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"test": "yarn run test:mocha && yarn run test:jest",
3232
"test:custom": "mocha --require ./config/babel/register.cjs ./packages/slate/test/index.js",
3333
"test:inspect": "yarn test --inspect-brk",
34-
"test:integration": "playwright install && run-p -r serve playwright",
35-
"test:integration-local": "run-p -r serve playwright",
34+
"test:integration": "playwright install --with-deps && run-p -r serve playwright",
35+
"test:integration-local": "playwright install && run-p -r serve playwright",
3636
"test:mocha": "mocha --require ./config/babel/register.cjs ./packages/{slate,slate-history,slate-hyperscript}/test/**/*.{js,ts}",
3737
"test:jest": "jest --config jest.config.js",
3838
"tsc:examples": "tsc --project ./site/tsconfig.example.json",

0 commit comments

Comments
 (0)