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
Container based developer flow
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
- Loading branch information
CrazyMax
committed
Feb 13, 2021
1 parent
2ee4751
commit 4890746
Showing
5 changed files
with
135 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/.dev | ||
/dist | ||
/lib | ||
/node_modules |
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,25 @@ | ||
name: validate | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- 'releases/v*' | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
branches: | ||
- 'master' | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: | ||
validate: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v2 | ||
- | ||
name: Validate | ||
run: docker buildx bake validate |
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,41 @@ | ||
#syntax=docker/dockerfile:1.2 | ||
|
||
FROM node:12 AS deps | ||
WORKDIR /src | ||
COPY package.json yarn.lock ./ | ||
RUN --mount=type=cache,target=/src/node_modules \ | ||
yarn install | ||
|
||
FROM scratch AS update-yarn | ||
COPY --from=deps /src/yarn.lock / | ||
|
||
FROM deps AS validate-yarn | ||
COPY .git .git | ||
RUN status=$(git status --porcelain -- yarn.lock); if [ -n "$status" ]; then echo $status; exit 1; fi | ||
|
||
FROM deps AS base | ||
COPY . . | ||
|
||
FROM base AS build | ||
RUN --mount=type=cache,target=/src/node_modules \ | ||
yarn build | ||
|
||
FROM base AS run-format | ||
RUN --mount=type=cache,target=/src/node_modules \ | ||
yarn run format | ||
|
||
FROM scratch AS format | ||
COPY --from=run-format /src/src/*.ts /src/ | ||
|
||
FROM base AS validate-format | ||
RUN --mount=type=cache,target=/src/node_modules \ | ||
yarn run format-check | ||
|
||
FROM scratch AS dist | ||
COPY --from=build /src/dist/ /dist/ | ||
|
||
FROM build AS validate-build | ||
RUN status=$(git status --porcelain -- dist); if [ -n "$status" ]; then echo $status; exit 1; fi | ||
|
||
FROM base AS dev | ||
ENTRYPOINT ["bash"] |
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,52 @@ | ||
variable "GITHUB_REPOSITORY" { | ||
default = "docker/setup-qemu-action" | ||
} | ||
|
||
group "default" { | ||
targets = ["build"] | ||
} | ||
|
||
group "pre-checkin" { | ||
targets = ["update-yarn", "format", "build"] | ||
} | ||
|
||
group "validate" { | ||
targets = ["validate-format", "validate-build", "validate-yarn"] | ||
} | ||
|
||
target "dockerfile" { | ||
dockerfile = "Dockerfile.dev" | ||
} | ||
|
||
target "update-yarn" { | ||
inherits = ["dockerfile"] | ||
target = "update-yarn" | ||
output = ["."] | ||
} | ||
|
||
target "build" { | ||
inherits = ["dockerfile"] | ||
target = "dist" | ||
output = ["."] | ||
} | ||
|
||
target "format" { | ||
inherits = ["dockerfile"] | ||
target = "format" | ||
output = ["."] | ||
} | ||
|
||
target "validate-format" { | ||
inherits = ["dockerfile"] | ||
target = "validate-format" | ||
} | ||
|
||
target "validate-build" { | ||
inherits = ["dockerfile"] | ||
target = "validate-build" | ||
} | ||
|
||
target "validate-yarn" { | ||
inherits = ["dockerfile"] | ||
target = "validate-yarn" | ||
} |