Skip to content

Commit 78d397f

Browse files
authored
feat!: support eslint-remote-tester@v4, ESM & FlatConfig (#33)
1 parent 81744de commit 78d397f

30 files changed

+28570
-30366
lines changed

.eslintignore

-1
This file was deleted.

.eslintrc.js

-56
This file was deleted.

.github/workflows/CI.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install & Build
2323
run: |
2424
pnpm install
25+
pnpm prebuild
2526
pnpm build
2627
2728
- name: Test

.github/workflows/update-build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- name: Install & Build
2323
run: |
2424
pnpm install
25+
pnpm prebuild
2526
pnpm build
2627
2728
- name: Push updates

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM node:18-alpine
22

3-
COPY dist/index.js /index.js
3+
COPY dist/index.mjs /index.mjs
44

55
RUN apk add --no-cache git
66

7-
ENTRYPOINT [ "node", "/index.js" ]
7+
ENTRYPOINT [ "node", "/index.mjs" ]

0 commit comments

Comments
 (0)