Added failing test: "Fetching a belongsTo that is set to null removes the record from a relationship - sync - and do it twice" #3047
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: Compat | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
TURBO_API: http://127.0.0.1:9080 | |
TURBO_TOKEN: this-is-not-a-secret | |
TURBO_TEAM: myself | |
concurrency: | |
group: compat-${{ github.head_ref || github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
fastboot: | |
timeout-minutes: 7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ./.github/actions/setup | |
with: | |
restore-broccoli-cache: true | |
install: true | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Tests | |
run: pnpm test:fastboot | |
embroider: | |
timeout-minutes: 7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ./.github/actions/setup | |
with: | |
restore-broccoli-cache: true | |
install: true | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run Tests | |
run: pnpm test:embroider | |
env: | |
UV_USE_IO_URING: 0 | |
floating-dependencies: | |
timeout-minutes: 9 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ./.github/actions/setup | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies w/o lockfile | |
run: pnpm install --no-lockfile | |
- name: Basic Tests | |
run: pnpm test | |
node-version-test: | |
name: Use Node.js ${{ matrix.node-version }} | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x, 18.x] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- uses: ./.github/actions/setup | |
with: | |
node-version: ${{ matrix.node-version }} | |
restore-broccoli-cache: true | |
install: true | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Basic Tests | |
run: pnpm test |