Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattheis committed Sep 16, 2023
1 parent bcfe4d8 commit 5ede44c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -25,7 +25,7 @@ jobs:
restore-keys: ${{ runner.os }}-node_modules-
- uses: actions/checkout@v2
- run: (cd ui && yarn)
- run: make build-js
- run: make NODE_OPTIONS=--openssl-legacy-provider build-js
- uses: golangci/golangci-lint-action@v3
with:
version: v1.53
Expand Down
1 change: 0 additions & 1 deletion Makefile
Expand Up @@ -7,7 +7,6 @@ DOCKER_BUILD_IMAGE=gotify/build
DOCKER_WORKDIR=/proj
DOCKER_RUN=docker run --rm -v "$$PWD/.:${DOCKER_WORKDIR}" -v "`go env GOPATH`/pkg/mod/.:/go/pkg/mod:ro" -w ${DOCKER_WORKDIR}
DOCKER_GO_BUILD=go build -mod=readonly -a -installsuffix cgo -ldflags "$$LD_FLAGS"
export NODE_OPTIONS=$(shell if node --help | grep -q -- "--openssl-legacy-provider"; then echo --openssl-legacy-provider; fi)

test: test-coverage test-js
check: check-go check-swagger check-js
Expand Down

0 comments on commit 5ede44c

Please sign in to comment.