Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joneugster committed Aug 24, 2024
1 parent 7695263 commit 3dc124e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: true
# needed to run cypress
- name: Install dependencies
run: npm install
- name: Download server image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: ${{ matrix.name }} - ${{ matrix.browser }}
runs-on: ${{ matrix.os }}
# add exceptions for failing jobs here
continue-on-error: false
continue-on-error: ${{ matrix.os }} == 'windows-latest'
steps:
- name: Setup firefox (macOS)
if: matrix.os == 'macos-latest' && matrix.browser == 'firefox'
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
echo "$(realpath ~/.elan/bin)" >> $GITHUB_PATH
- uses: actions/setup-node@v4
- run: npm install
- run: npm run setup_demo
# - run: npm run setup_demo # included in the next step
- name: Run tests
uses: cypress-io/github-action@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { defineConfig } from "cypress";
// Infoview loading is slow on Windows…

export default defineConfig({
defaultCommandTimeout: 400000,
defaultCommandTimeout: 40000,
experimentalWebKitSupport: true,
e2e: {
setupNodeEvents(on, config) {
Expand Down

0 comments on commit 3dc124e

Please sign in to comment.