Skip to content

Commit

Permalink
ci: remove bundle exec from windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
prototypicalpro committed Dec 8, 2020
1 parent e36c10a commit b0c702f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,9 @@ jobs:
bundle install --jobs 4 --retry 3
- name: Run Test
if: ${{ runner.os != 'Windows' }}
run: bundle exec npm test

- name: Run Test (Windows)
if: ${{ runner.os == 'Windows' }}
run: npm test

0 comments on commit b0c702f

Please sign in to comment.