Skip to content

Bump next from 13.5.7 to 14.2.10 #5781

Bump next from 13.5.7 to 14.2.10

Bump next from 13.5.7 to 14.2.10 #5781

Workflow file for this run

name: Node.js CI for Development Environment
on:
push:
branches: [ "**" ] # adjust this to the branches you want to run CI on
pull_request:
branches: [ "**" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest] # Operating systems
node-version: [20.x] # Node.js versions
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
uses: ./.github/actions/install-deps
- name: Start Server in Background
run: |
cd server
yarn start &
- name: Start Expo in Background
run: |
cd apps/expo
yarn web &
- name: Start Vite in Background
run: |
cd apps/vite
yarn dev &
- name: Wait for a while
run: sleep 520 # wait for some time to let the server start
- name: Kill Background Jobs (Unix)
if: matrix.os != 'windows-latest'
run: kill $(jobs -p) || true
- name: Kill Background Jobs (Windows)
if: matrix.os == 'windows-latest'
run: |
Get-Job | Stop-Job
Get-Job | Remove-Job