Bump @ai-sdk/openai from 0.0.64 to 0.0.70 #181
Workflow file for this run
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: E2E tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, ready_for_review, reopened, synchronize] | |
concurrency: | |
group: ${{ github.ref }}-e2e | |
cancel-in-progress: true | |
jobs: | |
test: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/pnpm-install | |
# Uses container with browser dependencies pre-installed as this is faster | |
# Slower version with cache has been removed here: | |
# https://github.com/IgorKrupenja/nextjs-starter/commit/4b6a52fa33341cbd87f63d0c79366ce679a1b2b8 | |
- name: Run E2E tests | |
uses: docker://mcr.microsoft.com/playwright:v1.47.0-jammy | |
with: | |
# The container does not have pnpm | |
# env HOME=/root is needed for Firefox | |
args: bash -c "npm install -g pnpm && env HOME=/root pnpm run test:e2e" | |
- name: Store artifacts from failed tests | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results | |
path: test-results/ | |
retention-days: 7 |