Skip to content

Commit e4acfe5

Browse files
committed
Fix workflow
1 parent 5113664 commit e4acfe5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node-version: 22.x
14+
node-version: [22.x]
1515

1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Use Node.js ${{ matrix.node-version }}
1919
uses: actions/setup-node@v4
2020
with:
2121
node-version: ${{ matrix.node-version }}
22-
cache: 'npm'
22+
cache: 'yarn'
23+
- run: cd react-native-expo
2324
- run: yarn install
2425
- run: yarn lint
2526
- run: yarn test:ci

0 commit comments

Comments
 (0)