Skip to content

make client depend on server #2

make client depend on server

make client depend on server #2

Workflow file for this run

name: 🚧 Run code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
test-client:
name: 🧪 Test client code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: client
- uses: actions/setup-node@v1
with:
node-version: 14.x
- name: install dependencies
run: yarn install --frozen-lockfile --non-interactive
working-directory: client
- name: build
env:
DISABLE_SOURCE_MAPS: true
BROCCOLI_ENV: production
run: yarn ember build -prod
working-directory: client
- name: test
run: yarn test
working-directory: client