Skip to content

Commit

Permalink
ci: move dependency installs to correct step
Browse files Browse the repository at this point in the history
  • Loading branch information
Frazer Smith committed Dec 22, 2020
1 parent ccc18bc commit bbdeb60
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn --immutable
- name: Run Tests
run: |
yarn --immutable
brew install poppler
yarn jest-coverage
- name: Run Tests
run: yarn jest-coverage
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
Expand All @@ -63,11 +63,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn --immutable
- name: Run Tests
run: |
yarn --immutable
sudo apt-get -y install poppler-data poppler-utils
yarn jest-coverage
- name: Run Tests
run: yarn jest-coverage
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
Expand Down

0 comments on commit bbdeb60

Please sign in to comment.