playwright/.github/workflows/firefox-linux.yml
Andrey Lushnikov 0de625d3ac Revert "devops: add docs & lint github workflow"
This breaks YML syntax in GH workflows
2020-02-12 11:45:16 -08:00

36 lines
642 B
YAML

name: Firefox Linux Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-18.04
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: install required packages
run: |
sudo apt-get install xvfb
- name: npm install, build, and test
run: |
npm install
xvfb-run --auto-servernum npm run ftest
env:
CI: true