Skip to content

Instantly share code, notes, and snippets.

@raschmitt
Created February 8, 2020 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raschmitt/4a9d3157f8878f8d993bb24530cbfb1a to your computer and use it in GitHub Desktop.
Save raschmitt/4a9d3157f8878f8d993bb24530cbfb1a to your computer and use it in GitHub Desktop.
End-to-end CI CodeceptJs
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [13.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npx codeceptjs run --override '{"helpers": {"Puppeteer": {"show": false}}}' --steps
env:
CI: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment