From 5a1cbc77b640d7992fd527ae1b02a6cb9b27b3fd Mon Sep 17 00:00:00 2001 From: Jan Kassens Date: Tue, 7 May 2024 17:29:57 -0400 Subject: [PATCH] CI: remove react.yml integration test workflow (#2947) This was used to run React CI tests compiled with the React Compiler. This is currently no longer used. --- .github/workflows/react.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/react.yml diff --git a/.github/workflows/react.yml b/.github/workflows/react.yml deleted file mode 100644 index 28a59b2261..0000000000 --- a/.github/workflows/react.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: react - -on: - push: - branches: [main] - pull_request: - -jobs: - test: - 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 - - run: yarn install --frozen-lockfile - - run: yarn workspace babel-plugin-react-compiler run build - - run: yarn link - working-directory: packages/babel-plugin-react-compiler - - run: yarn link babel-plugin-react-compiler - working-directory: react - - run: yarn install --frozen-lockfile - working-directory: react - - run: yarn test --ci - working-directory: react