playwright/.github/workflows/firefox-windows.yml

33 lines
528 B
YAML
Raw Normal View History

name: Firefox Windows Tests
2019-12-12 04:20:46 +03:00
on:
push:
branches:
- master
pull_request:
branches:
- master
2019-12-12 04:20:46 +03:00
jobs:
build:
runs-on: windows-latest
2019-12-12 04:20:46 +03:00
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
2019-12-12 04:20:46 +03:00
run: |
2019-12-12 04:22:51 +03:00
npm install
npm run ftest
2019-12-12 04:20:46 +03:00
env:
CI: true