Skip to content

🤖 Bump eslint from 8.57.0 to 9.6.0 in /kubelab-ui #407

🤖 Bump eslint from 8.57.0 to 9.6.0 in /kubelab-ui

🤖 Bump eslint from 8.57.0 to 9.6.0 in /kubelab-ui #407

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ '*' ]
jobs:
go-build:
name: Backend Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: kubelab-backend
strategy:
matrix:
goVer: [1.22]
steps:
- name: Set up Go ${{ matrix.goVer }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.goVer }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
go mod vendor
- name: Test
run: |
go test -v ./...
- name: Build
run: |
go build -v ./...
ui-build:
name: Frontend Build
runs-on: ubuntu-latest
defaults:
run:
working-directory: kubelab-ui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install dependencies
run: npm install --legacy-peer-deps
- name: Build
run: npm run build