Skip to content

Commit b4af6fb

Browse files
committed
Merge branch 'pirropirro/0.9.4' into pirropirro/merge-credentials
2 parents 822371f + 5026075 commit b4af6fb

File tree

7 files changed

+72
-16629
lines changed

7 files changed

+72
-16629
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)