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.
Jan Kassens committed
May 7, 2024 at 17:29 UTC
5a1cbc77b640d7992fd527ae1b02a6cb9b27b3fd
1 file changed
-27
.github/workflows/react.yml
deleted
-27
@@ -1,27 +0,0 @@
1
-name: react
2
-
3
-on:
4
- push:
5
- branches: [main]
6
- pull_request:
7
-
8
-jobs:
9
- test:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: actions/checkout@v4
13
- - uses: actions/setup-node@v4
14
- with:
15
- node-version: 18.x
16
- cache: "yarn"
17
- cache-dependency-path: yarn.lock
18
- - run: yarn install --frozen-lockfile
19
- - run: yarn workspace babel-plugin-react-compiler run build
20
- - run: yarn link
21
- working-directory: packages/babel-plugin-react-compiler
22
- - run: yarn link babel-plugin-react-compiler
23
- working-directory: react
24
- - run: yarn install --frozen-lockfile
25
- working-directory: react
26
- - run: yarn test --ci
27
- working-directory: react