[TM-1476] WEB DESIGN: Update the tree species UI to enable users to enter in data that aligns with taxonomic backbone #1306
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: | |
branches: [main, staging, release/**] | |
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 |