@appquality/unguess-design-system 4.0.55--canary.2ac110d.0 → 4.0.56

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.
@@ -10,6 +10,11 @@ on:
10
10
  workflow_dispatch:
11
11
 
12
12
  # what the action will do
13
+
14
+ permissions:
15
+ id-token: write # Required for OIDC
16
+ contents: write
17
+
13
18
  jobs:
14
19
  release:
15
20
  # The operating system it will run on
@@ -21,10 +26,10 @@ jobs:
21
26
  - uses: actions/checkout@v2
22
27
  - name: Prepare repository
23
28
  run: git fetch --unshallow --tags
24
- - name: Use Node.js 18.x
29
+ - name: Use Node.js 24
25
30
  uses: actions/setup-node@v2
26
31
  with:
27
- node-version: "18"
32
+ node-version: "24"
28
33
  - name: Git Identity
29
34
  run: |
30
35
  git config --global user.name 'github-actions[bot]'
@@ -35,9 +40,7 @@ jobs:
35
40
  - name: Create Release
36
41
  env:
37
42
  GITHUB_TOKEN: ${{ secrets.REPO_PAT }}
38
- #👇 npm token, see https://storybook.js.org/tutorials/design-systems-for-developers/react/en/distribute/ to obtain it
39
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
40
43
  run: |
41
- yarn install --frozen-lockfile
42
- yarn build
43
- yarn release
44
+ npm ci
45
+ npm run build
46
+ npm run release
@@ -19,14 +19,14 @@ jobs:
19
19
  - uses: actions/checkout@v2
20
20
  with:
21
21
  fetch-depth: 0
22
- - name: Use Node.js 18.x
22
+ - name: Use Node.js 24.x
23
23
  uses: actions/setup-node@v2
24
24
  with:
25
- node-version: "18"
25
+ node-version: "24"
26
26
 
27
27
  - name: Publish storybook
28
28
  id: storybook
29
29
  run: |
30
- yarn --frozen-lockfile
31
- yarn run build
30
+ npm ci
31
+ npm run build
32
32
  npx chromatic --project-token ${{ secrets.CHROMATIC_TOKEN }} --exit-zero-on-changes --ci
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ v24