mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
94d1fcf835
Co-authored-by: Joel Einbinder <joel.einbinder@gmail.com>
26 lines
558 B
YAML
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/
|