Skip to content

Commit

Permalink
feat!: support eslint-remote-tester@v4, ESM & FlatConfig (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
AriPerkkio committed Jun 9, 2024
1 parent 81744de commit 78d397f
Show file tree
Hide file tree
Showing 30 changed files with 28,570 additions and 30,366 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

56 changes: 0 additions & 56 deletions .eslintrc.js

This file was deleted.

1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Install & Build
run: |
pnpm install
pnpm prebuild
pnpm build
- name: Test
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Install & Build
run: |
pnpm install
pnpm prebuild
pnpm build
- name: Push updates
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
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" ]

0 comments on commit 78d397f

Please sign in to comment.