1175 updated under 18 years data variable #839
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: ^16.* | |
- name: install dependencies | |
run: yarn install --frozen-lockfile --non-interactive | |
- name: build | |
env: | |
DISABLE_SOURCE_MAPS: true | |
BROCCOLI_ENV: production | |
run: yarn ember build -prod | |
- name: test | |
run: yarn test |