Update module sigs.k8s.io/kind to v0.31.0 - autoclosed #426
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run linting | |
| run: npm run lint | |
| # Will be added later on | |
| # - name: Run tests | |
| # run: npm test -- --coverage | |
| - name: Build | |
| run: npm run build | |
| - name: Build Docker image | |
| run: | | |
| docker build --build-arg VITE_APP_VERSION=v0.0.1 --build-arg VITE_BACKEND_PORT="80" --build-arg VITE_BACKEND_NAME="ui-backend-manager" --build-arg BUILDOS=linux --build-arg TARGETARCH=amd64 -t sveltos-dashboard-ui:latest . |