-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up caching for frontend GitHub action (#4612)
- Loading branch information
Showing
3 changed files
with
26 additions
and
12 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
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 @@ | ||
prefer-offline = true |
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 |
---|---|---|
|
@@ -3,15 +3,15 @@ | |
"version": "1.0.0", | ||
"description": "", | ||
"scripts": { | ||
"build": "npm i && dotenv -- turbo run build", | ||
"build:ci": "npm ci && dotenv -- turbo run build:ci", | ||
"build:prod": "npm ci && dotenv -- turbo run build:prod", | ||
"build:prod_test": "npm ci && dotenv -- turbo run build:prod_test", | ||
"build:testnet": "npm ci && dotenv -- turbo run build:testnet", | ||
"deploy:prod_test": "npm ci && dotenv -- turbo run deploy:prod_test", | ||
"deploy:prod": "npm ci && dotenv -- turbo run deploy:prod", | ||
"deploy:testnet": "npm ci && dotenv -- turbo run deploy:testnet", | ||
"dev": "npm i && dotenv -- turbo run dev", | ||
"build": "npm i && dotenv -- turbo run build --cache-dir .turbo", | ||
"build:ci": "npm ci && dotenv -- turbo run build:ci --cache-dir .turbo", | ||
"build:prod": "npm ci && dotenv -- turbo run build:prod --cache-dir .turbo", | ||
"build:prod_test": "npm ci && dotenv -- turbo run build:prod_test --cache-dir .turbo", | ||
"build:testnet": "npm ci && dotenv -- turbo run build:testnet --cache-dir .turbo", | ||
"deploy:prod_test": "npm ci && dotenv -- turbo run deploy:prod_test --cache-dir .turbo", | ||
"deploy:prod": "npm ci && dotenv -- turbo run deploy:prod --cache-dir .turbo", | ||
"deploy:testnet": "npm ci && dotenv -- turbo run deploy:testnet --cache-dir .turbo", | ||
"dev": "npm i && dotenv -- turbo run dev --cache-dir .turbo", | ||
"changelog": "auto-changelog --tag-pattern '-website' --file-pattern '^frontend'" | ||
}, | ||
"author": "[email protected]", | ||
|