Merge pull request #156 from jrcichra/dependabot/npm_and_yarn/gui/vit… #412
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: React | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./gui | |
CI: "" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: yarn install | |
working-directory: ${{env.working-directory}} | |
- name: Build Site | |
run: yarn build | |
working-directory: ${{env.working-directory}} | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: | | |
gui/dist |