-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore(ci): Enable Corepack in pipeline runs
- Loading branch information
Showing
6 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,13 +32,17 @@ jobs: | |
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Fetch Git history | ||
run: git fetch --no-tags --depth=50 origin main | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Build packages | ||
run: yarn build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,13 +18,17 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Fetch Git history | ||
run: git fetch --no-tags --depth=50 origin main | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Run Commitlint | ||
run: npx commitlint --color --verbose --from $(git merge-base origin/main HEAD) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,10 +20,14 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Analyze | ||
run: npx omlet analyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,14 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Build | ||
run: yarn build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,14 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Build Icons | ||
working-directory: ./packages/icons | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,13 +24,17 @@ jobs: | |
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Fetch Git history | ||
run: git fetch --no-tags --depth=50 origin main | ||
|
||
- name: Install dependencies | ||
uses: bahmutov/[email protected] | ||
with: | ||
useRollingCache: true | ||
install-command: yarn --immutable | ||
|
||
- name: Build | ||
run: yarn build | ||
|