Skip to content

Commit

Permalink
CI: add timeout to yarn install
Browse files Browse the repository at this point in the history
  • Loading branch information
snewcomer authored and igorT committed Aug 28, 2020
1 parent cee4fcc commit 25fb3c0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
with:
node-version: 12.x
- name: Install dependencies
run: yarn install
run: yarn install --frozen-lockfile --network-timeout=300000
- name: Launcher Info
run: |
yarn run testem launchers
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
with:
node-version: 12.x
- name: Install dependencies
run: yarn install
run: yarn install --frozen-lockfile --network-timeout=300000
- name: Fastboot Test ${{ matrix.scenario }}
timeout-minutes: 6
run: yarn test:fastboot ${{ matrix.scenario }}
Expand All @@ -159,6 +159,10 @@ jobs:
launcher: Firefox
- os: windows-latest
launcher: Firefox
- os: macos-latest
launcher: Chrome
- os: windows-latest
launcher: Chrome
runs-on: ${{ matrix.os }}
name: ${{matrix.scenario}} ${{matrix.launcher}} on ${{matrix.os}}
steps:
Expand All @@ -167,7 +171,7 @@ jobs:
with:
node-version: 12.x
- name: Install dependencies
run: yarn install --frozen-lockfile
run: yarn install --frozen-lockfile --network-timeout=300000
- name: Launcher Info
run: |
yarn run testem launchers
Expand Down Expand Up @@ -259,7 +263,7 @@ jobs:
with:
node-version: 12.x
- name: Install dependencies
run: yarn install
run: yarn install --frozen-lockfile --network-timeout=300000
- name: Basic tests with ${{ matrix.scenario }}
env:
CI: true
Expand Down

0 comments on commit 25fb3c0

Please sign in to comment.