Merge branch 'pr-6679-new' into 51805/revoke-api-key #164
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: 'Gen AI - Frontend - Test and Build' | |
| on: | |
| push: | |
| paths: | |
| - 'packages/gen-ai/**' | |
| - '!LICENSE*' | |
| - '!DOCKERFILE*' | |
| - '!**.gitignore' | |
| - '!**.md' | |
| pull_request: | |
| paths: | |
| - 'packages/gen-ai/**' | |
| - '!LICENSE*' | |
| - '!DOCKERFILE*' | |
| - '!**.gitignore' | |
| - '!**.md' | |
| env: | |
| NODE_VERSION: 22 | |
| jobs: | |
| test-and-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ env.NODE_VERSION }} | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'packages/gen-ai/bff/go.mod' | |
| cache-dependency-path: 'packages/gen-ai/bff/go.sum' | |
| - name: Cache npm dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| **/node_modules | |
| ~/.npm | |
| ~/.cache/Cypress | |
| key: ${{ runner.os }}-${{ env.NODE_VERSION }}-npm-${{ hashFiles('package-lock.json', 'packages/gen-ai/frontend/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-${{ env.NODE_VERSION }}-npm- | |
| - name: Install root level dependencies | |
| run: npm install | |
| - name: Install dependencies | |
| working-directory: packages/gen-ai/frontend | |
| run: npm install | |
| - name: Run tests | |
| working-directory: packages/gen-ai/frontend | |
| run: npm run test:standalone | |
| - name: Run clean | |
| working-directory: packages/gen-ai/frontend | |
| run: npm run clean | |
| - name: Run build | |
| working-directory: packages/gen-ai/frontend | |
| run: npm run build:standalone | |
| - name: Check if there are uncommitted file changes | |
| working-directory: packages/gen-ai/frontend | |
| run: | | |
| clean=$(git status --porcelain) | |
| if [[ -z "$clean" ]]; then | |
| echo "Empty git status --porcelain: $clean" | |
| else | |
| echo "Uncommitted file changes detected: $clean" | |
| git diff | |
| exit 1 | |
| fi |