-
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.
Hamster Left A Pull Request - (Fix CI) (#250)
* Fix CI * Update .gitlab-ci.yml --------- Co-authored-by: Vedansh <[email protected]>
- Loading branch information
1 parent
150e018
commit 7d0e146
Showing
3 changed files
with
21 additions
and
17 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ on: | |
tags: | ||
- '*' | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
- cron: '0 0 * * 0' | ||
workflow_dispatch: | ||
|
||
env: | ||
|
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 |
---|---|---|
|
@@ -13,50 +13,50 @@ setup-pnpm: | |
stage: setup | ||
script: | ||
- node -v && npm -v | ||
- npm install -g [email protected] # Ensure pnpm is globally installed | ||
- pnpm -v # Verify pnpm installation | ||
- npm install -g [email protected] | ||
- pnpm -v | ||
|
||
build-node19: | ||
stage: build | ||
script: | ||
- pnpm install | ||
- pnpm run build | ||
- npx pnpm install | ||
- npx pnpm run build | ||
artifacts: | ||
paths: | ||
- node_modules/ | ||
|
||
build-node18: | ||
stage: build | ||
script: | ||
- pnpm install | ||
- pnpm run build | ||
- npx pnpm install | ||
- npx pnpm run build | ||
artifacts: | ||
paths: | ||
- node_modules/ | ||
|
||
build-node20: | ||
stage: build | ||
script: | ||
- pnpm install | ||
- pnpm run build | ||
- npx pnpm install | ||
- npx pnpm run build | ||
artifacts: | ||
paths: | ||
- node_modules/ | ||
|
||
build-node22: | ||
build-node21: | ||
stage: build | ||
script: | ||
- pnpm install | ||
- pnpm run build | ||
- npx pnpm install | ||
- npx pnpm run build | ||
artifacts: | ||
paths: | ||
- node_modules/ | ||
|
||
build-node21: | ||
build-node22: | ||
stage: build | ||
script: | ||
- pnpm install | ||
- pnpm run build | ||
- npx pnpm install | ||
- npx pnpm run build | ||
artifacts: | ||
paths: | ||
- node_modules/ | ||
|
@@ -66,4 +66,4 @@ development: | |
script: | ||
- echo "Executing Project With pnpm." | ||
- sleep 3 | ||
- pnpm start | ||
- npm start |