Skip to content

Commit 5a3fe3c

Browse files
committed
reconfigure to handle base64 in post urls + keys passed in through url
1 parent 1fc8326 commit 5a3fe3c

File tree

9 files changed

+3101
-1425
lines changed

9 files changed

+3101
-1425
lines changed

.github/workflows/ci.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ name: CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches: [main]
66
pull_request:
7-
branches: [ main ]
7+
branches: [main]
88

99
jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- name: Install pnpm
15-
uses: pnpm/action-setup@v4
16-
- name: Use Node.js 22
17-
uses: actions/setup-node@v4
18-
with:
19-
node-version: '22'
20-
cache: 'pnpm'
21-
- name: Install dependencies
22-
run: pnpm install --frozen-lockfile
23-
- run: pnpm run build
24-
- name: Run ESLint
25-
run: pnpm run lint
26-
- name: Ensure no changes
27-
run: git diff --exit-code
13+
- uses: actions/checkout@v4
14+
- name: Install pnpm
15+
uses: pnpm/action-setup@v4
16+
- name: Use Node.js 22
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: "22"
20+
cache: "pnpm"
21+
- name: Install dependencies
22+
run: pnpm install --frozen-lockfile
23+
- run: pnpm run build
24+
- name: Run ESLint
25+
run: pnpm run lint
26+
- name: Ensure no changes
27+
run: git diff --exit-code

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
permissions:
99
contents: read
10-
id-token: write
10+
id-token: write
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
@@ -21,4 +21,4 @@ jobs:
2121
- run: pnpm install --frozen-lockfile
2222
- run: pnpm publish --provenance
2323
env:
24-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
24+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 commit comments

Comments
 (0)