Skip to content

Commit 69f8b28

Browse files
committed
Fix workspace script
1 parent feac1df commit 69f8b28

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/kotlin-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ jobs:
4949
key: ${{ runner.os }}-kotlin-lint-gradle-${{ hashFiles('packages/react-native-gesture-handler/**/*.gradle*', 'packages/react-native-gesture-handler/**/gradle-wrapper.properties', 'packages/react-native-gesture-handler/android/build.gradle') }}
5050

5151
- name: Lint
52-
run: yarn workspace packages/react-native-gesture-handler lint:android
52+
run: yarn workspace react-native-gesture-handler lint:android

.github/workflows/static-root-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'software-mansion/react-native-gesture-handler'
1414
runs-on: ubuntu-latest
1515
env:
16-
RNGH_DIR: 'packages/react-native-gesture-handler'
16+
WORKING_DIRECTORY: 'packages/react-native-gesture-handler'
1717
concurrency:
1818
group: static-root-${{ github.ref }}
1919
cancel-in-progress: true
@@ -28,11 +28,11 @@ jobs:
2828
- name: Install node dependencies
2929
run: yarn
3030
- name: Check types
31-
working-directory: ${{ env.RNGH_DIR }}
31+
working-directory: ${{ env.WORKING_DIRECTORY }}
3232
run: yarn tsc --noEmit
3333
- name: Lint
34-
working-directory: ${{ env.RNGH_DIR }}
34+
working-directory: ${{ env.WORKING_DIRECTORY }}
3535
run: yarn lint:js-root
3636
- name: Check for circular dependencies
37-
working-directory: ${{ env.RNGH_DIR }}
37+
working-directory: ${{ env.WORKING_DIRECTORY }}
3838
run: yarn circular-dependency-check

0 commit comments

Comments
 (0)