playwright/.github/workflows/firefox-windows.yml
Workflow config file is invalid. Please check your config file: yaml: mapping values are not allowed in this context
2020-02-12 11:44:28 -08:00

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