From 4002459c86f3fa2e6798978218767a9aaa3af90f Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 9 Jul 2024 13:23:41 -0400 Subject: [PATCH] [ci] Add check_release_dependencies job ghstack-source-id: eb561ce60375c9e1da677980d330297799c650ac Pull Request resolved: https://github.com/facebook/react/pull/30169 --- .github/workflows/runtime_build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/runtime_build.yml b/.github/workflows/runtime_build.yml index 8143f5164c1df..60006cd91182b 100644 --- a/.github/workflows/runtime_build.yml +++ b/.github/workflows/runtime_build.yml @@ -183,3 +183,30 @@ jobs: path: | ./build.tgz ./build2.tgz + + check_release_dependencies: + name: Check release dependencies + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18.x + cache: "yarn" + cache-dependency-path: yarn.lock + - name: Restore cached node_modules + uses: actions/cache@v4 + id: node_modules + with: + path: "**/node_modules" + key: ${{ runner.arch }}-${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }} + - run: yarn install --frozen-lockfile + - name: Restore archived build + uses: actions/download-artifact@v4 + with: + path: build + merge-multiple: true + - name: Display structure of build + run: ls -R build + - run: yarn check-release-dependencies