Skip to content

Commit a3aa4fc

Browse files
authored
Merge pull request #25 from code0-tech/feat/woocommerce-shopware
woocommerce and shopware actions
2 parents 8568057 + 8391cd6 commit a3aa4fc

37 files changed

Lines changed: 152907 additions & 0 deletions

.gitlab-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ include:
2222
.node-actions:
2323
- gls-action
2424
- shopify-action
25+
- woocommerce-action
26+
- shopware-action
2527

2628
test-node:
2729
image: node:24.10.0

actions/shopware-action/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.env
2+
node_modules/
3+
dist/

actions/shopware-action/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:24-alpine
2+
3+
WORKDIR /app
4+
5+
COPY package.json package-lock.json* ./
6+
7+
RUN npm install
8+
9+
COPY . .
10+
11+
RUN npm run build
12+
13+
CMD ["npm", "run", "start"]

actions/shopware-action/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)