Skip to content

updaing github actions #28

updaing github actions

updaing github actions #28

Workflow file for this run

name: Feature Push
on:
push:
branches-ignore:
- develop
- release
jobs:
lint:
uses: cosmicmind/actions/.github/workflows/lint-code.yml@release
build:
needs:
- lint
uses: cosmicmind/actions/.github/workflows/build-package.yml@release
with:
BUILD_TARGET: release
NODE_ENV: production
VITE_MODE: production
test:
needs:
- build
uses: cosmicmind/actions/.github/workflows/build-package.yml@release
with:
BUILD_TARGET: production
NODE_ENV: production
VITE_MODE: test
codeql:
needs:
- test
uses: cosmicmind/actions/.github/workflows/codeql.yml@release