-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Turns out this whole time I wasn't even using yarn@3
- Loading branch information
Miles Conn
committed
Nov 24, 2023
1 parent
1465cf7
commit 7703a00
Showing
2 changed files
with
3 additions
and
14 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 |
---|---|---|
|
@@ -21,23 +21,12 @@ jobs: | |
- name: Checkout your repository using git | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Yarn 3.3.1 | ||
run: npm install -g [email protected] | ||
|
||
- name: Check Yarn Version | ||
run: yarn --version | ||
|
||
- name: Install, build, and upload your site | ||
uses: withastro/action@v1 | ||
with: | ||
path: blog # The root location of your Astro project inside the repository. (optional) | ||
# node-version: 19 # The specific version of Node that should be used to build your site. Defaults to 18. (optional) | ||
# package-manager: yarn@3.3.1 # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional) | ||
node-version: 18 # The specific version of Node that should be used to build your site. Defaults to 18. (optional) | ||
package-manager: yarn@1.22.19 # The Node package manager that should be used to install dependencies and build your site. Automatically detected based on your lockfile. (optional) | ||
|
||
deploy: | ||
needs: 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 |
---|---|---|
|
@@ -63,5 +63,5 @@ | |
"three": "^0.154.0", | ||
"threlte": "^3.13.1" | ||
}, | ||
"packageManager": "yarn@3.3.1" | ||
"packageManager": "yarn@1.22.19" | ||
} |