Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build output #2033

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
42 changes: 0 additions & 42 deletions .github/workflows/main.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Unit tests
run: npm run test.unit
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm test.e2e
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ client/dist/index.js
client/dist/index.js.map
client/dist/index.min.js
client/dist/index.min.js.map
node_modules/
/test-results/
/playwright-report/
/playwright/.cache/
12 changes: 12 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
playwright-report
.github
.idea
/cypress
node_modules
dist
packages/browser-sync-ui/public
packages/browser-sync-ui/static
packages/browser-sync/templates/cli-template.js
packages/browser-sync/lib/lodash.custom.js
packages/browser-sync-ui/lib/plugins/remote-debug/overlay-grid/css/grid-overlay-horizontal.css
packages/browser-sync-ui/lib/plugins/remote-debug/overlay-grid/css/grid-overlay-vertical.css
31 changes: 0 additions & 31 deletions crossbow.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions cypress.json

This file was deleted.

12 changes: 0 additions & 12 deletions cypress/configs/css-console-notify.js

This file was deleted.

9 changes: 0 additions & 9 deletions cypress/configs/css-overlay-notify.js

This file was deleted.

10 changes: 0 additions & 10 deletions cypress/configs/file-reloading.js

This file was deleted.

7 changes: 0 additions & 7 deletions cypress/configs/file-watching-ignore.js

This file was deleted.

10 changes: 0 additions & 10 deletions cypress/configs/logPrefix.js

This file was deleted.

9 changes: 0 additions & 9 deletions cypress/configs/no-notify.js

This file was deleted.

5 changes: 0 additions & 5 deletions cypress/fixtures/example.json

This file was deleted.

5 changes: 0 additions & 5 deletions cypress/fixtures/profile.json

This file was deleted.