Skip to content

Commit

Permalink
ci: immutable install is the default
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed Jan 16, 2024
1 parent c497008 commit 832e168
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/algolia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Generate documentation
run: yarn gendocs
- name: Build website
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Build
run: yarn build
- name: Upload build
Expand All @@ -40,7 +40,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Changelog
run: |
yarn semantic-release \
Expand All @@ -66,7 +66,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Download build
uses: actions/download-artifact@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Check
run: yarn workspaces foreach -A -p -v run check:${{ matrix.check }}

Expand All @@ -46,6 +46,6 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Test
run: yarn test
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install --immutable
run: yarn install
- name: Generate documentation
run: yarn gendocs
- name: Deploy
Expand Down

0 comments on commit 832e168

Please sign in to comment.