add backend CI
This commit is contained in:
parent
44b667ff43
commit
e37b5be376
|
@ -0,0 +1,2 @@
|
||||||
|
run:
|
||||||
|
issues-exit-code: 0 # lol
|
|
@ -0,0 +1,9 @@
|
||||||
|
steps:
|
||||||
|
check:
|
||||||
|
image: golang:alpine
|
||||||
|
commands:
|
||||||
|
- apk update && apk add curl vips-dev build-base
|
||||||
|
- make backend
|
||||||
|
# Install golangci-lint
|
||||||
|
- curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2
|
||||||
|
- golangci-lint run
|
|
@ -1,5 +1,5 @@
|
||||||
steps:
|
steps:
|
||||||
frontend:
|
check:
|
||||||
image: node
|
image: node
|
||||||
directory: frontend
|
directory: frontend
|
||||||
environment: # SvelteKit expects these in the environment during build time.
|
environment: # SvelteKit expects these in the environment during build time.
|
Loading…
Reference in New Issue