fix(deps): update dependency @neondatabase/serverless to v0.10.3 #3909
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Playwright Live Tests | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ vars.TURBO_TEAM }} | |
POSTGRES_URL: ${{ secrets.POSTGRES_URL }} | |
POSTGRES_URL_NON_POOLING: ${{ secrets.POSTGRES_URL_NON_POOLING }} | |
EDGE_CONFIG: ${{ secrets.EDGE_CONFIG }} | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- uses: actions/cache@v4 | |
id: playwright-cache | |
with: | |
path: | | |
~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
# This will use the cache for browsers. But it will reinstall system deps, which can't be cached | |
# https://github.com/microsoft/playwright/issues/20603#issuecomment-1416243810 | |
# Using ./test/next... is mandatory so we are not subject to playwright surprise updates | |
- run: ./test/next/node_modules/.bin/playwright install --with-deps | |
# https://github.com/patrickedqvist/wait-for-vercel-preview | |
# this allows to use action cache, which is not possible when using deployment_status otherwise | |
# see https://github.com/actions/cache/issues/319 | |
- name: Wait for Vercel Preview | |
uses: patrickedqvist/[email protected] | |
id: waitForVercelPreview | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
max_timeout: 600 | |
- name: Run Playwright tests on ${{ steps.waitForVercelPreview.outputs.url }} | |
run: pnpm integration-test | |
env: | |
PLAYWRIGHT_TEST_BASE_URL: ${{ steps.waitForVercelPreview.outputs.url }} | |
BLOB_UPLOAD_SECRET: ${{ secrets.BLOB_UPLOAD_SECRET }} | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: test/next/test-results | |
retention-days: 30 |