Skip to content

Commit e58fc94

Browse files
authored
fix: remove client side check of jwt token (#451)
remove client side check of jwt token
1 parent 666ebb7 commit e58fc94

File tree

6 files changed

+5096
-66
lines changed

6 files changed

+5096
-66
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,24 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: [ubuntu-latest]
22-
node: ["18"]
22+
node: ['20']
2323

2424
runs-on: ${{ matrix.os }}
2525

2626
steps:
2727
- uses: actions/checkout@v2
28-
2928
- name: Set up Node
3029
uses: actions/setup-node@v2
3130
with:
3231
node-version: ${{ matrix.node }}
32+
- name: Install pnpm
33+
uses: pnpm/action-setup@v4
34+
with:
35+
version: 10
3336
- name: Run CI steps
3437
run: |
35-
npm ci
36-
npm run ci
38+
pnpm install
39+
pnpm run ci
3740
- name: Upload coverage results to Coveralls
3841
uses: coverallsapp/github-action@master
3942
with:

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
},
4040
"dependencies": {
4141
"@supabase/node-fetch": "^2.6.14",
42-
"@types/phoenix": "^1.5.4",
43-
"@types/ws": "^8.5.10",
42+
"@types/phoenix": "^1.6.6",
43+
"@types/ws": "^8.5.14",
4444
"ws": "^8.18.0"
4545
},
4646
"devDependencies": {
4747
"@arethetypeswrong/cli": "^0.16.2",
4848
"@types/sinon": "^17.0.3",
49-
"@vitest/coverage-v8": "^2.0.5",
49+
"@vitest/coverage-v8": "^2.1.9",
5050
"eslint": "^7.0.0",
5151
"esm": "^3.2.25",
5252
"jsdom": "^16.7.0",
@@ -58,9 +58,9 @@
5858
"prettier": "^2.1.2",
5959
"semantic-release-plugin-update-version-in-files": "^1.1.0",
6060
"sinon": "^18.0.0",
61-
"typedoc": "^0.22.16",
62-
"typescript": "^4.0.3",
63-
"vitest": "^2.0.5",
61+
"typedoc": "^0.27.6",
62+
"typescript": "^5.7.3",
63+
"vitest": "^2.1.9",
6464
"web-worker": "1.2.0"
6565
}
66-
}
66+
}

0 commit comments

Comments
 (0)