File tree Expand file tree Collapse file tree 3 files changed +6
-75
lines changed Expand file tree Collapse file tree 3 files changed +6
-75
lines changed Original file line number Diff line number Diff line change 34
34
node-version : ${{ matrix.node }}
35
35
check-latest : true
36
36
37
- - name : Install pnpm 🎒
38
-
39
- with :
40
- version : 7
41
- run_install : false
42
-
43
- - name : Setup pnpm config 🏗
44
- run : pnpm config set store-dir $PNPM_CACHE_FOLDER
45
-
46
- - name : Get pnpm store directory 🏬
47
- id : pnpm-cache
48
- shell : bash
49
- run : |
50
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
51
-
52
- - name : Setup pnpm cache 🧃
53
- uses : actions/cache@v3
54
- with :
55
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
56
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
57
- restore-keys : |
58
- ${{ runner.os }}-pnpm-store-
59
-
60
- - name : Install dependencies 👨🏻💻
61
- run : pnpm install
37
+ - name : Install Dependencies 👨🏻💻
38
+ uses : ./.github/actions/install-dependencies
62
39
63
40
- name : Setup Turbo cache 🏎️
64
41
id : turbo-cache
Original file line number Diff line number Diff line change @@ -34,34 +34,11 @@ jobs:
34
34
node-version : ${{ matrix.node }}
35
35
check-latest : true
36
36
37
-
38
- name : Install pnpm
39
- with :
40
- version : 7
41
- run_install : false
42
-
43
- - name : Setup pnpm config 🏗
44
- run : pnpm config set store-dir $PNPM_CACHE_FOLDER
45
-
46
37
# - name: Setup npmrc 🏗
47
38
# run: echo "\n//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> .npmrc
48
39
49
- - name : Get pnpm store directory 🏬
50
- id : pnpm-cache
51
- shell : bash
52
- run : |
53
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
54
-
55
- - name : Setup pnpm cache 🧃
56
- uses : actions/cache@v3
57
- with :
58
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
59
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
60
- restore-keys : |
61
- ${{ runner.os }}-pnpm-store-
62
-
63
- - name : Install dependencies 👨🏻💻
64
- run : pnpm install
40
+ - name : Install Dependencies 👨🏻💻
41
+ uses : ./.github/actions/install-dependencies
65
42
66
43
- name : Bump versions 🏷 and Publish 🚀
67
44
uses : changesets/action@v1
Original file line number Diff line number Diff line change 33
33
node-version : ${{ matrix.node }}
34
34
check-latest : true
35
35
36
- - name : Install pnpm 🎒
37
-
38
- with :
39
- version : 7
40
- run_install : false
41
-
42
- - name : Setup pnpm config 🏗
43
- run : pnpm config set store-dir $PNPM_CACHE_FOLDER
44
-
45
- - name : Get pnpm store directory 🏬
46
- id : pnpm-cache
47
- shell : bash
48
- run : |
49
- echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
50
-
51
- - name : Setup pnpm cache 🧃
52
- uses : actions/cache@v3
53
- with :
54
- path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
55
- key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
56
- restore-keys : |
57
- ${{ runner.os }}-pnpm-store-
58
-
59
- - name : Install dependencies 👨🏻💻
60
- run : pnpm install
36
+ - name : Install Dependencies 👨🏻💻
37
+ uses : ./.github/actions/install-dependencies
61
38
62
39
- name : Setup Turbo cache 🏎️
63
40
id : turbo-cache
You can’t perform that action at this time.
0 commit comments