Skip to content

Commit

Permalink
Windows come ON
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreeman committed Jan 13, 2022
1 parent c816190 commit fccb1fa
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -50,6 +50,8 @@ jobs:
with:
run: yarn test

# The Windows runner can be super flaky both with Yarn installs and
# when launching browser tests, so we allow for retries in those steps.
test-windows:
name: Test Windows
runs-on: windows-latest
Expand All @@ -61,11 +63,17 @@ jobs:
with:
node-version: 12
- name: Install Dependencies
run: yarn install --frozen-lockfile
uses: nick-invision/retry@v2
with:
max_attempts: 2
command: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Run Tests
run: yarn test
uses: nick-invision/retry@v2
with:
max_attempts: 2
command: yarn test

test-floating-deps:
name: Test Floating Dependencies
Expand Down

0 comments on commit fccb1fa

Please sign in to comment.