Skip to content

Commit

Permalink
Update to yarn v1 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kylorhall-atlassian committed Oct 23, 2024
1 parent ffea454 commit c261eb0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
${{ runner.os }}-yarn-
- name: Install packages
run: yarn --immutable --immutable-cache --check-cache
run: yarn --frozen-lockfile

- name: Build source
run: yarn build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
node-version: ${{ steps.nvm.outputs.NVMRC }}

- name: Install Dependencies
run: yarn
run: yarn --frozen-lockfile

- name: Create Release Pull Request or Publish to npm
uses: changesets/action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
${{ runner.os }}-yarn-
- name: Install packages
run: yarn
run: yarn --frozen-lockfile

- name: Validate
run: yarn lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/visual-regression-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
${{ runner.os }}-yarn-
- name: Install packages
run: yarn --immutable --immutable-cache --check-cache
run: yarn --frozen-lockfile

- name: Build source
run: yarn build
Expand Down

0 comments on commit c261eb0

Please sign in to comment.