Skip to content

fix: fix incorrect link for iPhone 16 with 512GB in Prizes section #238

fix: fix incorrect link for iPhone 16 with 512GB in Prizes section

fix: fix incorrect link for iPhone 16 with 512GB in Prizes section #238

Workflow file for this run

name: PR Update
on:
pull_request_target:
branches:
- main
merge_group:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run Tests
uses: ./.github/workflows/test.yml
secrets: inherit
lint:
name: Run Linters
uses: ./.github/workflows/lint.yml
secrets: inherit
build:
name: Build ossgg
uses: ./.github/workflows/build-web.yml
secrets: inherit
e2e-test:
name: Run E2E Tests
uses: ./.github/workflows/playwright.yml

Check failure on line 32 in .github/workflows/pr.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr.yml" -> "./.github/workflows/playwright.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
required:
needs: [lint, test, build, e2e-test]
if: always()
runs-on: ubuntu-latest
steps:
- name: fail if conditional jobs failed
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled')
run: exit 1