-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81744de
commit 78d397f
Showing
30 changed files
with
28,570 additions
and
30,366 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ jobs: | |
- name: Install & Build | ||
run: | | ||
pnpm install | ||
pnpm prebuild | ||
pnpm build | ||
- name: Test | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ jobs: | |
- name: Install & Build | ||
run: | | ||
pnpm install | ||
pnpm prebuild | ||
pnpm build | ||
- name: Push updates | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM node:18-alpine | ||
|
||
COPY dist/index.js /index.js | ||
COPY dist/index.mjs /index.mjs | ||
|
||
RUN apk add --no-cache git | ||
|
||
ENTRYPOINT [ "node", "/index.js" ] | ||
ENTRYPOINT [ "node", "/index.mjs" ] |
Oops, something went wrong.