HAI-2008 Allow user to name hanke areas (#394) #500
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: ui-pr | |
on: | |
push: | |
branches: | |
- 'HAI-**' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16.x' | |
- run: yarn --frozen-lockfile | |
- run: yarn lint | |
- run: yarn test | |
- run: yarn build | |
- run: yarn type-check | |
- name: Tar build files | |
run: tar -cvf build.tar build | |
- name: Upload application build files for Docker build job | |
uses: actions/upload-artifact@v2 | |
with: | |
name: haitaton-ui-build | |
path: build.tar | |
retention-days: 1 |