Skip to content

3.0.0

3.0.0 #4

Workflow file for this run

name: Windows CI
on: [push, pull_request]
jobs:
build:
runs-on: windows-2019
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install
run: npm install
- name: Build
run: npm run build
- name: Regression test
uses: percy/exec-action@master
with:
command: 'npm run test:regression'
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}