mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Try Windows
This commit is contained in:
parent
d1ab14c74e
commit
bbb57ed401
8
.github/workflows/CI.yml
vendored
8
.github/workflows/CI.yml
vendored
|
@ -8,14 +8,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: windows-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- run: yarn install --immutable
|
- run: yarn install --immutable
|
||||||
- run: yarn prettier:check
|
|
||||||
- run: yarn build:all
|
- run: yarn build:all
|
||||||
- run: yarn lint:all
|
- run: yarn test:all
|
||||||
- uses: GabrielBB/xvfb-action@v1
|
|
||||||
with:
|
|
||||||
run: yarn test:all
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
setupFilesAfterEnv: ['<rootDir>/test/setup.js'],
|
setupFilesAfterEnv: ['<rootDir>/test/setup.js'],
|
||||||
testPathIgnorePatterns: ['<rootDir>/examples', '<rootDir>/test/chrome'],
|
testPathIgnorePatterns: ['<rootDir>/examples'],
|
||||||
};
|
};
|
||||||
|
|
|
@ -17,11 +17,7 @@ describe('Chrome extension', function () {
|
||||||
.usingServer(`http://localhost:${port}`)
|
.usingServer(`http://localhost:${port}`)
|
||||||
.withCapabilities({
|
.withCapabilities({
|
||||||
chromeOptions: {
|
chromeOptions: {
|
||||||
args: [
|
args: [`load-extension=${path}`],
|
||||||
'--no-sandbox',
|
|
||||||
'--disable-dev-shm-usage',
|
|
||||||
`load-extension=${path}`,
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.forBrowser('chrome')
|
.forBrowser('chrome')
|
||||||
|
|
|
@ -17,11 +17,7 @@ describe('DevTools panel for Electron', function () {
|
||||||
.withCapabilities({
|
.withCapabilities({
|
||||||
chromeOptions: {
|
chromeOptions: {
|
||||||
binary: electronPath,
|
binary: electronPath,
|
||||||
args: [
|
args: [`app=${join(__dirname, 'fixture')}`],
|
||||||
'--no-sandbox',
|
|
||||||
'--disable-dev-shm-usage',
|
|
||||||
`app=${join(__dirname, 'fixture')}`,
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.forBrowser('electron')
|
.forBrowser('electron')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user