-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix corepack build and dependency update (#66)
* chore: updated dependency and package.json * add: buildtest ci
- Loading branch information
1 parent
9c6b58f
commit 92f2caf
Showing
3 changed files
with
9,099 additions
and
6,685 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Deploy to GitHub Pages | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- fix-corepack-build | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: corepack enable | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "20" | ||
# Pick your own package manager and build script | ||
- run: pnpm install | ||
- run: pnpm build --preset github_pages | ||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v1 | ||
with: | ||
path: ./.output/public |
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 |
---|---|---|
|
@@ -14,24 +14,19 @@ | |
"dependencies": { | ||
"@iconify-json/heroicons": "^1.1.19", | ||
"@iconify-json/simple-icons": "^1.1.90", | ||
"@nuxt/content": "^2.12.0", | ||
"@nuxt/ui-pro": "^0.7.5", | ||
"@nuxtjs/fontaine": "^0.4.1", | ||
"@nuxtjs/google-fonts": "^3.1.3", | ||
"nuxt": "^3.10.1", | ||
"nuxt-og-image": "^2.2.4" | ||
}, | ||
"devDependencies": { | ||
"@nuxt/eslint-config": "^0.2.0", | ||
"@nuxt/image": "^1.3.0", | ||
"@nuxt/content": "^2.12.1", | ||
"@nuxt/eslint-config": "^0.3.13", | ||
"@nuxt/image": "^1.7.0", | ||
"@nuxt/ui-pro": "^1.2.0", | ||
"@nuxthq/studio": "^1.0.10", | ||
"eslint": "^8.56.0", | ||
"vue-tsc": "^1.8.27" | ||
"@nuxtjs/google-fonts": "^3.2.0", | ||
"eslint": "^9.4.0", | ||
"nuxt": "^3.11.2", | ||
"vue-tsc": "^2.0.19" | ||
}, | ||
"resolutions": { | ||
"vue": "3.3.13" | ||
}, | ||
"overrides": { | ||
"vue": "3.3.13" | ||
} | ||
} | ||
|
||
"packageManager": "[email protected]" } |
Oops, something went wrong.