Skip to content

Commit

Permalink
corrected use of puppeteer container
Browse files Browse the repository at this point in the history
  • Loading branch information
sr258 committed Dec 4, 2019
1 parent ccbef4f commit 4475247
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ jobs:

steps:
- uses: actions/checkout@v1
- name: Puppeteer action
if: matrix.os == 'ubuntu-latest'
uses: ianwalter/puppeteer@v2.0.0
with:
args: npm
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
Expand All @@ -45,7 +40,13 @@ jobs:
run: npm run test
- name: integration-tests
run: npm run test:integration
- name: player-e2e-test
run: npm run test:e2e:player
- name: Linux player-e2e-test
if: matrix.os == 'ubuntu-latest'
uses: ianwalter/puppeteer@v2.0.0
with:
args: npm run test:e2e:player
- name: Windows + MacOs player-e2e-test
if: matrix.os != 'ubuntu-latest'
run: npm run test:e2e:player
env:
CI: true

0 comments on commit 4475247

Please sign in to comment.