Skip to content

Commit

Permalink
Merge pull request #43 from pinecone-io/bugfix/updated-dependencies
Browse files Browse the repository at this point in the history
Updated dependencies
  • Loading branch information
rschwabco authored Sep 20, 2024
2 parents e14b337 + fdd9698 commit cb53b81
Show file tree
Hide file tree
Showing 9 changed files with 4,428 additions and 5,813 deletions.
57 changes: 37 additions & 20 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,44 @@ on:
- '**'
workflow_dispatch:
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9 # Specify the pnpm version here

test:
needs: install
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: Build application
run: npm run build
- name: Start server
run: npm start &
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- 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: Setup pnpm
uses: pnpm/action-setup@v3
with:
version: 9 # Specify the pnpm version here
- name: Install dependencies
run: pnpm install
- name: Build application
run: pnpm run build
- name: Start server
run: pnpm start &
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ next-env.d.ts
.env

#pnpm
pnpm-lock.yaml
/test-results/
/playwright-report/
/playwright/.cache/
Loading

0 comments on commit cb53b81

Please sign in to comment.