Skip to content

Commit

Permalink
its starting to be painful
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed May 8, 2024
1 parent 7edb9f2 commit f7dedbe
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build-monorepo-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ jobs:
run: ls -la
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Create directories
run: mkdir -p monorepo/packages
- name: Setup monorepo
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/build-on-windows-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:
run: ls -la
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Create React Native App
run: npx react-native init App
- name: Setup Yarn
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/build-v8-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
uses: actions/checkout@v4
with:
path: "reanimated_repo"
- name: Use Node.js
uses: actions/setup-node@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand All @@ -31,12 +33,7 @@ jobs:
run: pwd
- name: ls
run: ls -la
- name: Use Node.js
uses: actions/setup-node@v4
with:
cache: "yarn"
- name: Create React Native app
working-directory:
run: npx react-native init app
- name: Setup Yarn
working-directory: app
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/check-TS-react-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,18 @@ jobs:
run: yarn add --dev react-native@${{ matrix.react-native-version }}

- name: Check source types
working-directory: packages/react-native-reanimated
run: yarn type:check:src
- name: Check plugin types
working-directory: packages/react-native-reanimated
run: yarn type:check:plugin
- name: Check API
working-directory: packages/react-native-reanimated
run: yarn type:check:app
- name: Run common type tests
working-directory: packages/react-native-reanimated
run: yarn type:check:tests:common
- name: Run 0.72+ type tests
working-directory: packages/react-native-reanimated
if: matrix.react-native-version != '0.71'
run: yarn type:check:tests:0.72+

0 comments on commit f7dedbe

Please sign in to comment.