Skip to content

Commit 65eb765

Browse files
committed
Revert
1 parent 91d7894 commit 65eb765

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/daily-release.yaml

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

3434
- run: npx version-from-git --no-git-tag-version
3535

36-
- run: npm clean-install --ignore-scripts --no-production
36+
- run: npm clean-install --no-production
3737

3838
- name: Propagate versions
3939
run: npm version --no-git-tag-version --no-workspaces-update --workspaces `cat package.json | jq -r .version`

.github/workflows/playground.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checking out for ${{ github.ref }}
1717
uses: actions/checkout@v2
1818

19-
- run: npm clean-install --ignore-scripts
19+
- run: npm clean-install
2020

2121
- run: |
2222
npm run build

.github/workflows/preview-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
if: ${{ startsWith(github.ref, 'refs/heads/') }}
2626
run: npx version-from-git --no-git-tag-version
2727

28-
- run: npm clean-install --ignore-scripts
28+
- run: npm clean-install
2929

3030
- name: Propagate versions
3131
run: npm version --no-git-tag-version --workspaces `cat package.json | jq -r .version`

.github/workflows/publish-github-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: ${{ env.node-version }}
3131
cache: npm
3232

33-
- run: npm clean-install --ignore-scripts
33+
- run: npm clean-install
3434
working-directory: ./samples
3535

3636
- name: Run npm run build

.github/workflows/pull-request-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: ${{ env.node-version }}
3939
cache: npm
4040

41-
- run: npm clean-install --ignore-scripts --strict-peer-deps
41+
- run: npm clean-install --strict-peer-deps
4242

4343
- run: npm run build --if-present # Add instrumentation code
4444

0 commit comments

Comments
 (0)