diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8fb7e17..dd0072e 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -3,6 +3,8 @@ name: Deploy on: push: branches: ["canary"] + pull_request: + branches: ["main"] workflow_dispatch: jobs: diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..602a577 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +# syntax=docker/dockerfile:1 +FROM node:16.15.1-alpine +WORKDIR /app +COPY ./ ./ +RUN npm install +CMD ["node", "index.js"] \ No newline at end of file