Skip to content

Commit a72cfcb

Browse files
committed
Squashed commit of the following:
commit 4a0a53b Author: pirropirro <fra.pirrotta@gmail.com> Date: Thu Jun 12 11:12:35 2025 +0200 bump: bump version commit b4af6fb Merge: 822371f 5026075 Author: pirropirro <fra.pirrotta@gmail.com> Date: Thu Jun 12 11:11:47 2025 +0200 Merge branch 'pirropirro/0.9.4' into pirropirro/merge-credentials commit 5026075 Author: pirropirro <fra.pirrotta@gmail.com> Date: Thu Jun 12 10:26:10 2025 +0200 chore: bump commit f15efea Author: pirropirro <fra.pirrotta@gmail.com> Date: Thu Jun 12 10:22:12 2025 +0200 chore: bump version commit 3249e8d Author: pirropirro <fra.pirrotta@gmail.com> Date: Thu Jun 12 10:22:00 2025 +0200 chore: update workflows commit a46957b Author: pirropirro <fra.pirrotta@gmail.com> Date: Tue May 20 10:52:54 2025 +0200 chore: bump version commit a6b95d9 Author: pirropirro <fra.pirrotta@gmail.com> Date: Tue May 20 10:52:04 2025 +0200 feature(APP-2445): remove jws dependency
1 parent 822371f commit a72cfcb

File tree

7 files changed

+73
-16630
lines changed

7 files changed

+73
-16630
lines changed

.github/workflows/release.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,22 @@ jobs:
1717

1818
- name: Checkout
1919
uses: actions/checkout@master
20+
with:
21+
ref: ${{ github.ref }}
22+
fetch-depth: 0
2023

2124
- name: Integration tests
22-
uses: actions/setup-node@v1
25+
uses: actions/setup-node@v3
2326
with:
24-
node-version: '12'
27+
node-version: "18.x"
28+
cache: "yarn"
2529

26-
- run: npm install
27-
- run: npm run lint
28-
- run: npm run test
30+
- run: yarn
31+
- run: yarn lint
32+
- run: yarn test
2933
env:
3034
CLIENT_ID: ${{ secrets.CLIENT_ID }}
3135
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
3236

33-
- run: npm run build
37+
- run: yarn build
3438
- run: npm publish

.github/workflows/test.yaml

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [opened, synchronize, ready_for_review, reopened]
66
push:
77
branches:
8-
- master
8+
- master
99

1010
jobs:
1111
test:
@@ -18,14 +18,19 @@ jobs:
1818

1919
- name: Checkout
2020
uses: actions/checkout@master
21+
with:
22+
ref: ${{ github.ref }}
23+
fetch-depth: 0
2124

2225
- name: Integration tests
23-
uses: actions/setup-node@v1
26+
uses: actions/setup-node@v3
2427
with:
25-
node-version: '16'
26-
- run: npm install
27-
- run: npm run lint
28-
- run: npm run test
28+
node-version: "18.x"
29+
cache: "yarn"
30+
31+
- run: yarn
32+
- run: yarn lint
33+
- run: yarn test
2934
env:
30-
CLIENT_ID: ${{ secrets.CLIENT_ID }}
31-
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
35+
CLIENT_ID: ${{ secrets.CLIENT_ID }}
36+
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}

0 commit comments

Comments
 (0)