Skip to content

Make it works again #191

Make it works again

Make it works again #191

Workflow file for this run

name: build and test
on:
push:
pull_request:
branches:
- master
jobs:
build:
# Machine environment:
# We specify the Node.js version manually below, and use versioned Chrome from Puppeteer.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Test
run: npm run test-headless