mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 22:22:53 +03:00
184b25ff7b
Mac will come in a follow up! As a drive-by, removed npm build everywhere, because npm install already runs build.
33 lines
527 B
YAML
33 lines
527 B
YAML
name: WebKit Windows Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [12.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: npm install, and test
|
|
run: |
|
|
npm install
|
|
npm run wtest
|
|
env:
|
|
CI: true
|