Skip to content

Commit

Permalink
fix: firefox test integration environment (#5742)
Browse files Browse the repository at this point in the history
* fix: fix firefox test integration env

* chore: test ubuntu apt source

* chore: IMMUTABLE_INSTALLS ?

* fix: ubuntu version
  • Loading branch information
WindRunnerMax authored Oct 16, 2024
1 parent c9d9471 commit 97ffee4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ permissions:
jobs:
ci:
name: ${{ matrix.command }}
runs-on: ubuntu-latest
# Pin the version to avoid dependency installation issues
runs-on: ubuntu-22.04
strategy:
matrix:
command:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"test": "yarn run test:mocha && yarn run test:jest",
"test:custom": "mocha --require ./config/babel/register.cjs ./packages/slate/test/index.js",
"test:inspect": "yarn test --inspect-brk",
"test:integration": "playwright install && run-p -r serve playwright",
"test:integration-local": "run-p -r serve playwright",
"test:integration": "playwright install --with-deps && run-p -r serve playwright",
"test:integration-local": "playwright install && run-p -r serve playwright",
"test:mocha": "mocha --require ./config/babel/register.cjs ./packages/{slate,slate-history,slate-hyperscript}/test/**/*.{js,ts}",
"test:jest": "jest --config jest.config.js",
"tsc:examples": "tsc --project ./site/tsconfig.example.json",
Expand Down

0 comments on commit 97ffee4

Please sign in to comment.