Skip to content

Commit a848d77

Browse files
committed
feat: add ci
1 parent 62625da commit a848d77

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Continuous Integration
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
push:
8+
branches:
9+
- main
10+
11+
jobs:
12+
validate:
13+
runs-on: ubuntu-latest
14+
name: Validate
15+
steps:
16+
- name: Checkout Repo
17+
uses: actions/checkout@v5
18+
19+
- uses: pnpm/action-setup@v4
20+
- name: Setup NodeJS
21+
uses: actions/setup-node@v6
22+
with:
23+
node-version: 20
24+
cache: "pnpm"
25+
26+
- name: Install dependencies
27+
run: pnpm install --frozen-lockfile
28+
29+
- name: Check Style
30+
run: pnpm lint:check
31+
32+
- name: Build
33+
run: pnpm -r build

agent/src/oidcProvider/provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async function getProvider() {
2929
grant_types: ['authorization_code'],
3030
id_token_signed_response_alg: 'ES256',
3131
redirect_uris: ['https://paradym.id/invitation/redirect'],
32-
application_type: 'native'
32+
application_type: 'native',
3333
},
3434
{
3535
client_id: 'wallet',

0 commit comments

Comments
 (0)