Validate and update GitHub Copilot instructions with comprehensive testing and fixes #220
Workflow file for this run
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: Upload frontend artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: frontend-build | |
| path: dist/ | |
| retention-days: 30 | |
| - name: Upload server artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: server-build | |
| path: server/dist/ | |
| retention-days: 30 | |
| - name: Upload client artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: client-build | |
| path: client/dist/ | |
| retention-days: 30 | |
| - name: Upload types artifacts | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: types-build | |
| path: src/types/dist/ | |
| retention-days: 30 |