Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bduyng committed Jun 7, 2024
1 parent 6ecaccb commit 3e82506
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ runs:
with:
node-version-file: .nvmrc

- name: Enable Corepack
run: corepack enable
shell: bash

- name: Cache dependencies
id: yarn-cache
uses: actions/cache@v3
Expand All @@ -24,6 +20,13 @@ runs:
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
${{ runner.os }}-yarn-
- name: Enable Corepack
run: corepack enable
shell: bash

- name: Prepare Yarn version
run: corepack prepare [email protected] --activate

- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"engines": {
"node": ">= 16.0.0"
},
"packageManager": "^[email protected]",
"packageManager": "[email protected]",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
Expand Down

0 comments on commit 3e82506

Please sign in to comment.