Skip to content

Commit 170a26a

Browse files
committed
feat: add initial setup for WooCommerce action with Docker and TypeScript
1 parent 21f7b5b commit 170a26a

6 files changed

Lines changed: 4690 additions & 0 deletions

File tree

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/woocommerce-action/README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)