chore(deps-dev): bump autoprefixer from 10.4.22 to 10.4.23 in /timeless-api/src/main/webui #2
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: Timeless CI | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| timeless-api: | |
| name: Build Timeless API (Backend) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: timeless-api | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: "21" | |
| cache: maven | |
| - name: Build Timeless API | |
| run: mvn -B -ntp formatter:validate impsort:check package | |
| - name: Setup Node.js 24 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| cache-dependency-path: timeless-api/src/main/webui/package-lock.json | |
| - name: Check code formatting with Prettier | |
| working-directory: ./timeless-api/src/main/webui | |
| run: npm run prettier:check | |
| - name: Setup Chrome | |
| id: chrome | |
| uses: browser-actions/setup-chrome@v1 | |
| - name: Install Frontend Dependencies | |
| working-directory: ./timeless-api/src/main/webui | |
| run: npm ci | |
| whatsapp: | |
| name: Build WhatsApp Bot (Node.js) | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: whatsapp | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js 24 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| cache: npm | |
| cache-dependency-path: whatsapp/package-lock.json | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Check code formatting with Prettier | |
| run: npm run prettier:check |