A GitHub Action / Docker image for Puppeteer, the Headless Chrome Node API
This was forked and updated. As the old repo is no longer supported and had some library issues.
As a GitHub Action:
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
# NOTE: this pins the action to a specific commit sha for security
# reasons but you can also use a version tag if desired. For example:
# ianwalter/puppeteer-container@v0.2.0
uses: AMO-brandon/puppeteer-container-test
with:
args: pnpm i
- name: Test
uses: AMO-brandon/puppeteer-container-test@v0.2.0
with:
args: pnpm t
Apache 2.0 with Commons Clause - See LICENSE
Created by Ian Walter