-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
1 parent
5dd564a
commit fa6677d
Showing
12 changed files
with
16,688 additions
and
15,502 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 |
---|---|---|
|
@@ -18,22 +18,23 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- run: corepack enable | ||
- run: git config --global user.email "[email protected]" | ||
- run: git config --global user.name "GitHub Actions" | ||
- run: yarn --frozen-lockfile | ||
- run: yarn checkUnknownFiles | ||
- run: yarn lint | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpm checkUnknownFiles | ||
- run: pnpm lint | ||
- env: | ||
GITHUB_REPOSITORY: ${{ secrets.GITHUB_REPOSITORY }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
name: Push changed files | ||
run: yarn dw-ci push-changed-files | ||
run: pnpm dw-ci push-changed-files | ||
- env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
if: github.ref == 'refs/heads/master' | ||
name: Release | ||
run: yarn semantic-release | ||
run: pnpm semantic-release | ||
test: | ||
needs: cancel-existing | ||
runs-on: ${{ matrix.os }} | ||
|
@@ -45,10 +46,11 @@ jobs: | |
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node }} | ||
- run: yarn --frozen-lockfile | ||
- run: corepack enable | ||
- run: pnpm install --frozen-lockfile | ||
- env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: yarn test | ||
run: pnpm test | ||
- if: failure() | ||
uses: actions/upload-artifact@v3 | ||
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
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 @@ | ||
node-linker=hoisted |
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 |
---|---|---|
|
@@ -95,6 +95,18 @@ export default { | |
port: 587, | ||
}, | ||
}, | ||
// or use runtimeConfig | ||
runtimeConfig: { | ||
mail: { | ||
message: { | ||
to: '[email protected]', | ||
}, | ||
smtp: { | ||
host: "smtp.example.com", | ||
port: 587, | ||
}, | ||
}, | ||
}, | ||
} | ||
``` | ||
|
||
|
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 |
---|---|---|
|
@@ -60,13 +60,13 @@ | |
"execa": "^8.0.1", | ||
"nuxt": "^3.3.3", | ||
"nuxt-dev-ready": "^3.0.0", | ||
"ora": "^8.0.1", | ||
"output-files": "^2.0.19", | ||
"port-ready": "^0.1.0", | ||
"smtp-tester": "^2.0.1", | ||
"tree-kill-promise": "^3.0.9", | ||
"with-local-tmp-dir": "^5.0.0" | ||
}, | ||
"packageManager": "[email protected]+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
|
Oops, something went wrong.