Skip to content

Commit 6d8ba4d

Browse files
authored
Merge pull request #1583 from City-of-Helsinki/release-4.10.0
release-4.10.0
2 parents fe99659 + c2b3476 commit 6d8ba4d

File tree

71 files changed

+1302
-360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+1302
-360
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: install dependencies
5050
run: |
5151
yarn config set network-timeout 300000
52-
yarn
52+
yarn --frozen-lockfile --ignore-scripts
5353
5454
- name: build design tokens package
5555
run: yarn build

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: install e2e dependencies
5656
run: |
5757
yarn config set network-timeout 300000
58-
yarn
58+
yarn --frozen-lockfile --ignore-scripts
5959
working-directory: ./e2e
6060

6161
- name: install playwright browser and OS dependencies

.github/workflows/loki-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
run: |
6464
sudo apt update
6565
sudo apt install graphicsmagick -y
66-
yarn add loki@0.35.1
66+
yarn add --ignore-scripts loki@0.35.1
6767
working-directory: ./packages/react
6868

6969
- name: Sanitize artifact name. Backslash not allowed

.github/workflows/patchrelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
registry-url: 'https://registry.npmjs.org'
2424

2525
- name: install dependencies
26-
run: yarn
26+
run: yarn --frozen-lockfile --ignore-scripts
2727

2828
- name: build design tokens package
2929
run: yarn build

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
registry-url: 'https://registry.npmjs.org'
2626

2727
- name: install dependencies
28-
run: yarn
28+
run: yarn --frozen-lockfile --ignore-scripts
2929

3030
- name: build design tokens package
3131
run: yarn build

.github/workflows/publish-demo-site-with-storybooks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ jobs:
6868
- name: install dependencies
6969
run: |
7070
yarn config set network-timeout 300000
71-
yarn
71+
yarn --frozen-lockfile --ignore-scripts
72+
73+
- name: rebuild native modules
74+
run: npm rebuild
7275

7376
# Build site
7477
- name: build site package

.github/workflows/publish-npm-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
key: yarn-node_modules-folder-${{ hashFiles('**/yarn.lock') }}
5555

5656
- name: install dependencies
57-
run: yarn
57+
run: yarn --frozen-lockfile --ignore-scripts
5858

5959
- name: release npm packages
6060
run: yarn release

.github/workflows/publish-site-with-storybooks.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ jobs:
5656
- name: install dependencies
5757
run: |
5858
yarn config set network-timeout 300000
59-
yarn
59+
yarn --frozen-lockfile --ignore-scripts
60+
61+
- name: rebuild native modules
62+
run: npm rebuild
6063

6164
- name: build documentation site
6265
run: yarn build

.github/workflows/update-icon-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102

103103
- name: Install React package NPM dependencies
104104
if: steps.build_checker.outputs.SKIP_REST_STEPS != 'true'
105-
run: (cd ./packages/react && yarn)
105+
run: (cd ./packages/react && yarn --frozen-lockfile --ignore-scripts)
106106

107107
- name: Lint React files
108108
if: steps.build_checker.outputs.SKIP_REST_STEPS != 'true'

CHANGELOG.md

Lines changed: 24 additions & 1 deletion

0 commit comments

Comments
 (0)