Skip to content

Update react monorepo #8302

Update react monorepo

Update react monorepo #8302

name: Test Application
on: ['pull_request']
jobs:
test-server:
services:
mysql:
image: mysql:5.7
ports:
- 3306:3306
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_USER: voicecommons
MYSQL_PASSWORD: voicecommons
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run application tests
run: |
yarn install --frozen-lockfile
yarn test