Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ jobs:
with:
fetch-depth: 0

- name: 🤖 Generate dist files
run: make generate

- name: 🌎 Set environment variables
env:
IMAGE_NAMESPACE: wayofdev/node
Expand All @@ -50,6 +47,9 @@ jobs:
echo "VERSION=${RELEASE_VERSION:1}"; \
} >> "$GITHUB_ENV"

- name: 🤖 Generate dist files
run: make generate

- name: 🐳 Define docker meta
id: meta
uses: docker/metadata-action@v4
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ help: ## Show this menu
# Default action
# Defines default command when `make` is executed without additional parameters
# ------------------------------------------------------------------------------------
all: hooks build
all: hooks generate build test
.PHONY: all


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"url": "https://github.com/wayofdev/docker-node.git"
},
"dependencies": {
"pnpm": "7.30.5"
"pnpm": "8.0.0"
}
}
2 changes: 1 addition & 1 deletion src/Dockerfiles/all/goss.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ command:
exit-status: 0
"pnpm --version":
stdout:
- "7."
- "8."
exit-status: 0
"turbo --version":
stdout:
Expand Down