deps: Bump k8s.io/apimachinery from 0.36.0 to 0.36.1 #185
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] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: Build web frontend | |
| run: | | |
| npm i -g pnpm && cd web && pnpm install --frozen-lockfile && pnpm build | |
| mkdir -p ../internal/frontend/web/dist | |
| cp -r dist/* ../internal/frontend/web/dist/ | |
| - uses: golangci/golangci-lint-action@v7 | |
| with: | |
| version: v2.11.4 | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: Build web frontend | |
| run: | | |
| npm i -g pnpm && cd web && pnpm install --frozen-lockfile && pnpm build | |
| mkdir -p ../internal/frontend/web/dist | |
| cp -r dist/* ../internal/frontend/web/dist/ | |
| - run: go build ./... | |
| - run: go vet ./... | |
| - run: go test ./... -timeout 30s |