Skip to content

test: github workflows #24

test: github workflows

test: github workflows #24

name: Gluestack-ui Next App | Start and Build
on:
push:
branches:
- patch
pull_request:
branches:
- patch
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: next
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
working-directory: ${{ env.working-directory }}
run: yarn
- name: Build Next
working-directory: ${{ env.working-directory }}
run: yarn build