Skip to content

Commit

Permalink
Skip windows
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Dec 6, 2020
1 parent 5977caf commit 19b7b77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Expand Up @@ -29,7 +29,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn --frozen-lockfile && yarn format:ci
run: yarn --frozen-lockfile
- name: Check Prettier
if: matrix.os != 'windows-latest'
run: yarn format:ci
- name: Test
run: yarn -s test:ci
- name: Upload coverage to Codecov
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/trunk.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
node-version: 12.x
- name: Install Dependencies
run: yarn --frozen-lockfile && yarn format:ci
run: yarn --frozen-lockfile
- name: Install GraphQL@14.x
run: yarn add graphql@^14.5.8
- name: Test
Expand All @@ -31,7 +31,10 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn --frozen-lockfile && yarn format:ci
run: yarn --frozen-lockfile
- name: Check Prettier
if: matrix.os != 'windows-latest'
run: yarn format:ci
- name: Test
run: yarn -s test:ci
- name: Upload coverage to Codecov
Expand Down

0 comments on commit 19b7b77

Please sign in to comment.