playwright/.github/workflows/infra.yml

26 lines
444 B
YAML
Raw Normal View History

name: "infra"
on:
push:
branches:
- master
- release-*
pull_request:
branches:
- master
- release-*
jobs:
doc-and-lint:
name: "docs & lint"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.15
- uses: microsoft/playwright-github-action@v1
- run: npm ci
- run: npm run build
- run: npm run lint