Skip to content

Bump svelte from 5.38.0 to 5.53.6 in /cmd/server/frontend #369

Bump svelte from 5.38.0 to 5.53.6 in /cmd/server/frontend

Bump svelte from 5.38.0 to 5.53.6 in /cmd/server/frontend #369

Workflow file for this run

name: Go Lint & Build
on:
push:
branches: [ main ]
paths:
- '**.go'
- '**.yml'
- '**.mod'
- '**.sum'
pull_request:
branches: [ main ]
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
jobs:
build:
name: Lint and Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.21"
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
# Optional: show only new issues if it's a pull request. The default value is `false`.
only-new-issues: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...