mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
33 lines
522 B
YAML
33 lines
522 B
YAML
name: tests: Win + FF
|
|
|
|
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 ftest
|
|
env:
|
|
CI: true
|