Skip to content

Commit

Permalink
chore(senna): update github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Aug 23, 2023
1 parent c2be7e5 commit b26dab4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/senna.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use or update Yarn cache
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Use or update Yarn cache
Expand Down
9 changes: 8 additions & 1 deletion maintenance/projects/senna/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ module.exports = function (config) {
timeout: 35000,
},
},
customLaunchers: {
Puppeteer: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--disable-setuid-sandbox', '--single-process']
}
}
});

metalKarmaConfig(config);

config.set({
browsers: ['ChromeHeadless']
browsers: ['Puppeteer']
})
};

0 comments on commit b26dab4

Please sign in to comment.