Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vaibhk20 committed Sep 17, 2024
1 parent f955c42 commit 96d508a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gluestack-expo-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: "18.x"
node-version: 18.x

- name: Install dependencies
run: yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gluestack-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: "18.x"
node-version: 18.x

- name: Install dependencies
run: yarn
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/universal-gluestack-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: "18.x"
node-version: 18.x

- name: Install dependencies
run: yarn

- name: Start Expo
run: yarn start
run: yarn run:expo

- name: Start Next
run: yarn dev
run: yarn run:next

- name: Build Next
run: yarn build

0 comments on commit 96d508a

Please sign in to comment.