[TM-1402] Wire up the new tree species BE systems with the updated tree species input. #1338
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: pull-request | |
on: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install modules | |
run: yarn | |
- name: Test | |
run: yarn run jest --ci | |
- name: Build | |
run: NEXT_PUBLIC_TARGET_ENV=staging yarn build |