Build Frontend Assets #201
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: Frontend Asset Build Pipeline | |
| run-name: Build Frontend Assets | |
| on: [push] | |
| jobs: | |
| build-frontend-assets: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Install vite | |
| run: yarn add vite | |
| - name: Build vue app | |
| run: yarn action-build | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: frontend | |
| path: js/ |