Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
[ghstack-poisoned]
  • Loading branch information
poteto committed Jun 24, 2024
1 parent 5c3640e commit 8f9c026
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/runtime_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
id: define_release_channels
with:
script: |
return ['stable', 'experimental'];
return ["stable", "experimental"];
build:
name: yarn build
Expand All @@ -51,12 +51,14 @@ jobs:
key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn build --b=${{ matrix.bundle_type }} --r=${{ matrix.release_channel }} --ci=github
- name: Display structure of build
run: ls -R build
- name: Archive build
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.bundle_type }}_${{ matrix.release_channel }}
path: |
build/**
build
lint_build:
name: yarn lint-build
Expand All @@ -65,6 +67,7 @@ jobs:
matrix:
bundle_type: ${{ fromJSON(needs.define_build_params.outputs.bundle_type) }}
release_channel: ${{ fromJSON(needs.define_build_params.outputs.release_channel) }}
continue-on-error: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -124,6 +127,7 @@ jobs:

# TODO: Test more persistent configurations?
]
continue-on-error: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -829,6 +829,8 @@ describe('StoreStressConcurrent', () => {

// @reactVersion >= 18.0
it('should handle a stress test for Suspense without type change (Concurrent Mode)', async () => {
jest.setTimeout(15000);

const A = () => 'a';
const B = () => 'b';
const C = () => 'c';
Expand Down

0 comments on commit 8f9c026

Please sign in to comment.