Merge pull request #249 from jrcichra/dependabot/npm_and_yarn/gui/rea… #599
This file contains hidden or 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@v4 | |
with: | |
name: dist | |
path: | | |
gui/dist |