From ccbef4f69b44b9d18931099920e3dc64149a39c3 Mon Sep 17 00:00:00 2001 From: Sebastian Rettig Date: Wed, 4 Dec 2019 20:41:52 +0100 Subject: [PATCH] added puppeteer action --- .github/workflows/coverage.yml | 2 +- .github/workflows/nodejs.yml | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index c431712ea..c1cf92d36 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -1,4 +1,4 @@ -on: ["push", "pull_request"] +on: ["push"] name: Coveralls coverage generator diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index e63ab8114..767f8da99 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,11 +9,16 @@ jobs: strategy: matrix: - os: [ubuntu-latest, macOS-latest] - node-version: [10.x, 12.x] + os: [ubuntu-latest, macos-latest] + node-version: [10.x] 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: