File tree Expand file tree Collapse file tree 2 files changed +34
-1
lines changed
Expand file tree Collapse file tree 2 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments