Skip to content

Commit

Permalink
updated commit to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jonathan committed Jun 29, 2024
1 parent cac47b1 commit ef2f2d9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Development Pull Request
on:
pull_request:
branches:
- dev
- develop

jobs:
lint:
Expand All @@ -15,7 +15,7 @@ jobs:
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
BUILD_TARGET: develop
NODE_ENV: development
VITE_MODE: test
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dev-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Development Push
on:
push:
branches:
- dev
- develop

jobs:
lint:
Expand All @@ -15,7 +15,7 @@ jobs:
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
BUILD_TARGET: develop
NODE_ENV: development
VITE_MODE: test
test:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/feature-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Feature Push
on:
push:
branches-ignore:
- dev
- develop
- release

jobs:
Expand All @@ -16,7 +16,7 @@ jobs:
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
BUILD_TARGET: develop
NODE_ENV: development
VITE_MODE: test
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
BUILD_TARGET: develop
NODE_ENV: development
VITE_MODE: test
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
BUILD_TARGET: develop
NODE_ENV: development
VITE_MODE: test
test:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"lint": "eslint --fix --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"build": "run-s build:lib",
"build:lib": "vite build --config vite.config.ts --mode ${VITE_MODE:-production}",
"dev": "run-s dev:lib",
"dev:lib": "vite build --config vite.config.ts --mode ${VITE_MODE:-development}",
"develop": "run-s develop:lib",
"develop:lib": "vite build --config vite.config.ts --mode ${VITE_MODE:-development}",
"watch": "run-p watch:lib",
"watch:lib": "vite build --watch --config vite.config.ts --mode ${VITE_MODE:-development}",
"test": "run-s test:unit",
Expand Down

0 comments on commit ef2f2d9

Please sign in to comment.