playwright/.github/workflows/webkit.yml

32 lines
738 B
YAML
Raw Normal View History

name: WebKit Tests
2019-12-12 04:20:46 +03:00
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 libwoff1 libopus0 libwebp6 libwebpdemux2 libenchant1c2a libgudev-1.0-0 libsecret-1-0 libhyphen0 libgdk-pixbuf2.0-0
sudo apt-get install xvfb
- name: npm install, build, and test
run: |
2019-12-12 04:22:51 +03:00
npm install
npm run build
2019-12-12 04:20:46 +03:00
xvfb-run --auto-servernum npm run wunit
env:
CI: true