Skip to content

“Can you do it for the develop context as well? It won't hurt and we'… #714

“Can you do it for the develop context as well? It won't hurt and we'…

“Can you do it for the develop context as well? It won't hurt and we'… #714

Workflow file for this run

name: Build
on:
push:
branches:
- master
- develop
pull_request:
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12.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