Skip to content

Commit

Permalink
Merge pull request #7 from hirasso/feat/remove-serve-dependency
Browse files Browse the repository at this point in the history
feat: remove `serve` dependency
  • Loading branch information
hirasso authored Dec 4, 2023
2 parents d0ec43c + 6a82e3a commit b30138c
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 725 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
name: End-To-End Tests
name: E2E Tests

on:
push:
branches: [ main ]
paths: ['src/**', '.github/**', 'docs/**']
branches: [main]
paths: ["src/**", ".github/**", "docs/**", "tests/**"]
pull_request:
branches: [ main ]
paths: ['src/**', '.github/**', 'docs/**']
paths: ["src/**", ".github/**", "docs/**", "tests/**"]
workflow_dispatch:

jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:e2e
# - uses: actions/upload-artifact@v3
# if: always()
# with:
# name: playwright-report
# path: playwright-report/
# retention-days: 30
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Run Playwright tests
run: npm run test:e2e

- uses: daun/playwright-report-summary@v2
with:
report-file: playwright-results.json
Loading

0 comments on commit b30138c

Please sign in to comment.