Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Improvements to CI: comment on PR when syntax checking fails
- Loading branch information
Showing
3 changed files
with
59 additions
and
56 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash -e | ||
|
||
DOCKER_IMAGE=nginxproxymanager/nginx-full:certbot-node | ||
docker pull "${DOCKER_IMAGE}" | ||
|
||
# Test | ||
docker run --rm \ | ||
-v "$(pwd)/backend:/app" \ | ||
-v "$(pwd)/global:/app/global" \ | ||
-w /app \ | ||
"${DOCKER_IMAGE}" \ | ||
sh -c 'yarn install && yarn eslint . && rm -rf node_modules' | ||
|
||
# Build | ||
docker build --pull --no-cache --squash --compress \ | ||
-t "${IMAGE}:ci-${BUILD_NUMBER}" \ | ||
-f docker/Dockerfile \ | ||
--build-arg TARGETPLATFORM=linux/amd64 \ | ||
--build-arg BUILDPLATFORM=linux/amd64 \ | ||
--build-arg BUILD_VERSION="${BUILD_VERSION}" \ | ||
--build-arg BUILD_COMMIT="${BUILD_COMMIT}" \ | ||
--build-arg BUILD_DATE="$(date '+%Y-%m-%d %T %Z')" \ | ||
. |