Skip to content

Commit ca97ee3

Browse files
committed
chore(ci): remove install options
Yarn provides proper default options on CI and thus are not needed.
1 parent c86aeae commit ca97ee3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: '16.x'
2121
cache: 'yarn'
2222

23-
- run: yarn install --immutable --immutable-cache --check-cache
23+
- run: yarn install
2424
- run: yarn test
2525
- name: Build # builds the docs site with --prefix-paths for gh-pages
2626
run: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
scope: '@Pyrax'
1919
cache: 'yarn'
2020

21-
- run: yarn install --immutable --immutable-cache --check-cache
21+
- run: yarn install
2222
- name: Autoscope package.json
2323
uses: khaazz/action-autoscope@master
2424

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: '16.x'
2121
cache: 'yarn'
2222

23-
- run: yarn install --immutable --immutable-cache --check-cache
23+
- run: yarn install
2424
- name: Check tests before release
2525
run: yarn test
2626

0 commit comments

Comments
 (0)