Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
201a85c
feat: add WooCommerce action to GitLab CI configuration
nicosammito Jul 7, 2026
730a930
feat: WooCommerce
nicosammito Jul 7, 2026
e14b997
feat: update generated WooCommerce schemas for zod v4 compatibility
nicosammito Jul 7, 2026
ade4b5f
test: add demo test using vitest
nicosammito Jul 7, 2026
21f7b5b
chore: add .gitignore to exclude environment files and build artifacts
nicosammito Jul 7, 2026
170a26a
feat: add initial setup for WooCommerce action with Docker and TypeSc…
nicosammito Jul 7, 2026
8f77020
feat: add webhook payload classes for WooCommerce order creation and …
nicosammito Jul 7, 2026
f5105b2
feat: add webhook classes for WooCommerce order creation and update
nicosammito Jul 7, 2026
6d240cb
feat: add Zod schemas for WooCommerce entities and batch operations
nicosammito Jul 7, 2026
2cb4cbc
feat: implement WooCommerce action with event handling and data type …
nicosammito Jul 7, 2026
92f236c
feat: add initial project setup with Docker, TypeScript, and configur…
nicosammito Jul 7, 2026
a3c2c2a
feat: add initial test setup with Vitest for demo purposes
nicosammito Jul 7, 2026
c634abc
feat: add scripts to filter and patch Shopware API schemas for compat…
nicosammito Jul 7, 2026
1893d2d
feat: Shopware
nicosammito Jul 7, 2026
47e8b3e
feat: add Shopware webhook payload schemas for order events
nicosammito Jul 7, 2026
15f0185
feat: add Shopware webhook classes for order events (cancelled, paid,…
nicosammito Jul 7, 2026
a2bcaf1
feat: add Zod schemas for Shopware order-related entities
nicosammito Jul 7, 2026
aea9770
feat: implement Shopware action with webhook payload and event regist…
nicosammito Jul 7, 2026
8391cd6
feat: add Shopware action to CI configuration
nicosammito Jul 7, 2026
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
2 changes: 2 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ include:
.node-actions:
- gls-action
- shopify-action
- woocommerce-action
- shopware-action

test-node:
image: node:24.10.0
Expand Down
3 changes: 3 additions & 0 deletions actions/shopware-action/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.env
node_modules/
dist/
13 changes: 13 additions & 0 deletions actions/shopware-action/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:24-alpine

WORKDIR /app

COPY package.json package-lock.json* ./

RUN npm install

COPY . .

RUN npm run build

CMD ["npm", "run", "start"]
Empty file.
Loading