Migrate to ESM with esbuild and vitest (#243)

* Migrate to ESM with esbuild, vitest and upgrade @actions/* to ESM-only versions

* fix: update lockfile for npm ci compatibility

---------

Co-authored-by: Suneha Bose <suneha.bose@gmail.com>
This commit is contained in:
David Gamero
2026-04-03 12:48:25 -05:00
committed by GitHub
parent 08845d9b5a
commit 5f8d8195ef
10 changed files with 1530 additions and 7248 deletions
+10
View File
@@ -0,0 +1,10 @@
import {defineConfig} from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['**/*.test.ts'],
clearMocks: true
}
})