Skip to content

Commit bc4b27f

Browse files
authored
Merge pull request #39 from code0-tech/claude/feat-33-twilio-action-653r66
Twilio action
2 parents c64c074 + d3da6c7 commit bc4b27f

18 files changed

Lines changed: 51334 additions & 0 deletions

.gitlab-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ include:
2424
- shopify-action
2525
- woocommerce-action
2626
- shopware-action
27+
- twilio-action
2728

2829
test-node:
2930
image: node:24.10.0

actions/twilio-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/twilio-action/Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:24.10.0-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/twilio-action/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)