Skip to content

Commit 23e1b72

Browse files
committed
Fix working-directory
1 parent 03847f8 commit 23e1b72

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
defaults:
12-
run:
13-
working-directory: ./react-native-expo
1411

1512
strategy:
1613
matrix:
@@ -20,9 +17,13 @@ jobs:
2017
- uses: actions/checkout@v4
2118
- name: Use Node.js ${{ matrix.node-version }}
2219
uses: actions/setup-node@v4
20+
working-directory: ./react-native-expo
2321
with:
2422
node-version: ${{ matrix.node-version }}
2523
cache: 'yarn'
2624
- run: yarn install
25+
working-directory: ./react-native-expo
2726
- run: yarn lint
27+
working-directory: ./react-native-expo
2828
- run: yarn test:ci
29+
working-directory: ./react-native-expo

0 commit comments

Comments
 (0)