-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
66 additions
and
119 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: 'Yarn' | ||
|
||
description: 'Install the dependencies' | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
# We require yarn v4 and installing through corepack is the easiest way to get it | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/actions/corepack | ||
|
||
- name: Restore Yarn Cache & Types | ||
id: restore-yarn-types | ||
uses: ./.github/actions/cache-deps | ||
with: | ||
mode: restore-yarn | ||
|
||
- name: Echo cache hit | ||
shell: bash | ||
run: | | ||
echo "Yarn cache hit: ${{ steps.restore-yarn-types.outputs.cache-hit-yarn }}" | ||
- name: Yarn install & after-install generate types | ||
if: steps.restore-yarn-types.outputs.cache-hit-yarn != 'true' | ||
shell: bash | ||
run: | | ||
yarn install --immutable | ||
yarn after-install | ||
- name: Save Yarn Cache & Types | ||
if: steps.restore-yarn-types.outputs.cache-hit-yarn != 'true' | ||
uses: ./.github/actions/cache-deps | ||
with: | ||
mode: save-yarn | ||
key: ${{ steps.restore-yarn-types.outputs.computed-cache-key-yarn }} |
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/workflows/yarn | ||
- uses: ./.github/actions/yarn | ||
|
||
- uses: CatChen/[email protected] | ||
with: | ||
|
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
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,7 +21,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: ./.github/workflows/yarn | ||
- uses: ./.github/actions/yarn | ||
|
||
- name: Annotations and coverage report | ||
uses: ArtiomTr/[email protected] | ||
|
This file was deleted.
Oops, something went wrong.