chore: switch to ESM-only & drop Axios dependency

This commit is contained in:
izzy
2025-04-04 15:15:24 +01:00
parent 60c145a8e5
commit 544331d550
10 changed files with 484 additions and 527 deletions
+6 -8
View File
@@ -11,18 +11,16 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node.js 18
- uses: pnpm/action-setup@v4
- name: Use Node.js LTS
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- uses: pnpm/action-setup@v4
with:
version: 7
node-version: 22.x
cache: "pnpm"
- name: Install packages
run: yarn install
run: pnpm install
- name: Build package
run: yarn build
run: pnpm build
- name: Commit changes
uses: EndBug/add-and-commit@v9
with: