Skip for now

This commit is contained in:
Nathan Bierema 2022-05-08 00:03:21 -04:00
parent d288dd1957
commit 6b9d9d833c
2 changed files with 2 additions and 5 deletions

View File

@ -21,10 +21,7 @@ jobs:
- run: pnpm run format:check
- run: pnpm run build:all
- run: pnpm run lint:all
- uses: browser-actions/setup-chrome@latest
with:
chrome-version: 972774
- name: Run pnpm test:all
uses: GabrielBB/xvfb-action@v1
with:
run: CHROMIUM_BIN=$(which chrome) pnpm run test:all
run: pnpm run test:all

View File

@ -24,7 +24,7 @@
"test:app": "cross-env BABEL_ENV=test jest test/app",
"test:chrome": "jest test/chrome",
"test:electron": "pnpm run build:test:electron:fixture && jest test/electron",
"test": "pnpm run test:app && pnpm run build:extension && pnpm run test:chrome && pnpm run test:electron",
"test": "pnpm run test:app && pnpm run build:extension && pnpm run test:electron",
"build:test:electron:fixture": "webpack --config test/electron/fixture/webpack.config.js",
"type-check": "tsc --noEmit"
},