[test/react] Fix github workflow
The flattening broke the shell script because the directory structure changed. Instead of depending on a flaky shell script, this PR encodes the commands as part of the github workflow.
Sathya Gunasekaran committed
Oct 25, 2023 at 12:36 UTC
51baf5807e6d99d27dd1b233225402330cc0375c
1 file changed
+4
compiler/.github/workflows/react.yml
+4
@@ -17,6 +17,10 @@ jobs:
17
cache-dependency-path: yarn.lock
18
- run: yarn install --frozen-lockfile
19
- run: yarn workspace babel-plugin-react-forget run build
20
+ - run: yarn link
21
+ working-directory: packages/babel-plugin-react-forget
22
+ - run: yarn link babel-plugin-react-forget
23
+ working-directory: react
24
- run: yarn install --frozen-lockfile
25
working-directory: react
26
#- run: yarn test --ci