mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
31 lines
595 B
YAML
31 lines
595 B
YAML
name: Firefox Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
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
|
|
npm run build
|
|
xvfb-run --auto-servernum npm run funit
|
|
env:
|
|
CI: true
|