Bump vite from 5.4.11 to 6.0.9 in /client #1347
Workflow file for this run
This file contains 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: Server CI Pipeline | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
reporter: github-pr-check | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
mod: | |
name: Module Download | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Module Download | |
if: steps.mod-cache.outputs.cache-hit != 'true' | |
run: go mod download | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: [mod] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Build | |
run: go build -o ./Remote-BMI server/*.go | |
- uses: actions/upload-artifact@v4.6.0 | |
with: | |
name: Remote-BMI | |
path: ./Remote-BMI | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
needs: [mod] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
cache: true | |
- name: Test | |
run: go test ./... -v |