chore: bump spring version to 4.0.5 #24
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: Frontend PR | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'client/**/*.html' | |
| - 'client/**/*.png' | |
| - 'client/**/*.json' | |
| - 'client/**/*.txt' | |
| - 'client/**/*.ts' | |
| - 'client/**/*.tsx' | |
| - 'client/**/*.js' | |
| - 'client/Dockerfile' | |
| - 'client/Caddyfile' | |
| - '.github/workflows/client-ci.yml' | |
| jobs: | |
| run-checks: | |
| name: Checks | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm install | |
| working-directory: ./client | |
| - name: Run lint | |
| run: npm run lint | |
| working-directory: ./client | |
| - name: Run build | |
| run: npm run build | |
| working-directory: ./client | |
| - name: Run tests | |
| run: npm run test:no-watch | |
| working-directory: ./client | |
| build-and-push: | |
| name: Build & Push | |
| runs-on: ubuntu-latest | |
| needs: ["run-checks"] | |
| permissions: | |
| contents: write | |
| packages: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Log in to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Extract metadata for Docker | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: ghcr.io/${{ github.repository }}/app | |
| tags: | | |
| type=raw,value=candidate | |
| - name: Generate version tag | |
| id: version | |
| run: | | |
| DATE=$(date +'%Y.%m.%d') | |
| TAG="app-v${DATE}.${{ github.run_number }}" | |
| echo "tag=${TAG}" >> $GITHUB_OUTPUT | |
| echo "Generated tag: ${TAG}" | |
| - name: Build and push Docker image | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: ./client | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| build-args: | | |
| VITE_BUILD=${{ steps.version.outputs.tag }} |