spoko-design-system 1.2.0 → 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -15,29 +15,16 @@ jobs:
|
|
|
15
15
|
- name: Checkout code
|
|
16
16
|
uses: actions/checkout@v5
|
|
17
17
|
|
|
18
|
+
- name: Setup pnpm
|
|
19
|
+
uses: pnpm/action-setup@v4
|
|
20
|
+
with:
|
|
21
|
+
version: 10.17.1
|
|
22
|
+
|
|
18
23
|
- name: Setup Node.js
|
|
19
24
|
uses: actions/setup-node@v5
|
|
20
25
|
with:
|
|
21
26
|
node-version: '22'
|
|
22
|
-
|
|
23
|
-
- name: Install pnpm
|
|
24
|
-
run: npm install -g pnpm@10.17.1
|
|
25
|
-
|
|
26
|
-
- name: Verify pnpm
|
|
27
|
-
run: pnpm --version
|
|
28
|
-
|
|
29
|
-
- name: Get pnpm store directory
|
|
30
|
-
shell: bash
|
|
31
|
-
run: |
|
|
32
|
-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
33
|
-
|
|
34
|
-
- name: Setup pnpm cache
|
|
35
|
-
uses: actions/cache@v4
|
|
36
|
-
with:
|
|
37
|
-
path: ${{ env.STORE_PATH }}
|
|
38
|
-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
39
|
-
restore-keys: |
|
|
40
|
-
${{ runner.os }}-pnpm-store-
|
|
27
|
+
cache: 'pnpm'
|
|
41
28
|
|
|
42
29
|
- name: Install dependencies
|
|
43
30
|
run: pnpm install --frozen-lockfile
|
|
@@ -15,29 +15,16 @@ jobs:
|
|
|
15
15
|
with:
|
|
16
16
|
fetch-depth: 0 # Shallow clones should be disabled for better analysis
|
|
17
17
|
|
|
18
|
+
- name: Setup pnpm
|
|
19
|
+
uses: pnpm/action-setup@v4
|
|
20
|
+
with:
|
|
21
|
+
version: 10.17.1
|
|
22
|
+
|
|
18
23
|
- name: Setup Node.js
|
|
19
24
|
uses: actions/setup-node@v5
|
|
20
25
|
with:
|
|
21
26
|
node-version: '22'
|
|
22
|
-
|
|
23
|
-
- name: Install pnpm
|
|
24
|
-
run: npm install -g pnpm@10.17.1
|
|
25
|
-
|
|
26
|
-
- name: Verify pnpm
|
|
27
|
-
run: pnpm --version
|
|
28
|
-
|
|
29
|
-
- name: Get pnpm store directory
|
|
30
|
-
shell: bash
|
|
31
|
-
run: |
|
|
32
|
-
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
33
|
-
|
|
34
|
-
- name: Setup pnpm cache
|
|
35
|
-
uses: actions/cache@v4
|
|
36
|
-
with:
|
|
37
|
-
path: ${{ env.STORE_PATH }}
|
|
38
|
-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
39
|
-
restore-keys: |
|
|
40
|
-
${{ runner.os }}-pnpm-store-
|
|
27
|
+
cache: 'pnpm'
|
|
41
28
|
|
|
42
29
|
- name: Install dependencies
|
|
43
30
|
run: pnpm install --frozen-lockfile
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [1.2.1](https://github.com/polo-blue/sds/compare/v1.2.0...v1.2.1) (2025-10-05)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* use pnpm/action-setup in all workflows for proper pnpm installation ([e4d8686](https://github.com/polo-blue/sds/commit/e4d868688214097350ac0a0bc9524660f8892013))
|
|
6
|
+
|
|
1
7
|
## [1.2.0](https://github.com/polo-blue/sds/compare/v1.1.17...v1.2.0) (2025-10-05)
|
|
2
8
|
|
|
3
9
|
### Features
|