Bump @types/node from 24.0.10 to 24.3.0 in /frontend #58
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
| # SPDX-FileCopyrightText: 2025 Eyad Issa <[email protected]> | |
| # | |
| # SPDX-License-Identifier: AGPL-3.0-only | |
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| go-importer: | |
| name: "Build & Test Go services" | |
| runs-on: ubuntu-latest | |
| env: | |
| WDIR: services/ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install pcap-dev | |
| run: | | |
| sudo apt-get update && \ | |
| sudo apt-get install -y libpcap-dev | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| cache-dependency-path: "**/*.sum" | |
| - name: Install dependencies | |
| run: go mod download -x | |
| working-directory: ${{ env.WDIR }} | |
| - name: Build | |
| run: go build -v ./... | |
| working-directory: ${{ env.WDIR }} | |
| - name: Run tests | |
| run: go test -v ./... | |
| working-directory: ${{ env.WDIR }} | |
| frontend: | |
| name: Frontend | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "current" | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Install dependencies | |
| run: yarn install | |
| working-directory: frontend | |
| - name: Build | |
| run: yarn build | |
| working-directory: frontend | |
| compose: | |
| name: Compose | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Copy .env file | |
| run: cp .env.example .env | |
| - name: Build and push Docker images | |
| run: | | |
| docker compose build --pull |