Skip to content

test: github workflows #8

test: github workflows

test: github workflows #8

name: Universal gluestack-ui App (Expo and NextJs) | Start and Build
on:
push:
branches:
- patch
pull_request:
branches:
- patch
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: universal
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- name: Install dependencies
run: yarn
- name: Start Expo
working-directory: ${{ env.working-directory }}
run: yarn run:expo --non-interactive
- name: Build Next
working-directory: ${{ env.working-directory }}
run: yarn build