playwright/.github/workflows/package_create_playwright.yml
Max Schmitt 94d1fcf835
chore: move create-playwright build to build.js infra (#9687)
Co-authored-by: Joel Einbinder <joel.einbinder@gmail.com>
2021-10-22 10:13:05 +02:00

26 lines
558 B
YAML

name: create-playwright CI
on:
push:
branches: [ master ]
paths:
- 'packages/create-playwright/**/*'
pull_request:
branches: [ master ]
paths:
- 'packages/create-playwright/**/*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: 14
cache: 'npm'
- run: npm i -g npm@7
- run: npm ci
- run: npm run build
- run: npm run test
working-directory: packages/create-playwright/