Skip to content

feat(CV-0): maintenance cleanup for vitest #38

feat(CV-0): maintenance cleanup for vitest

feat(CV-0): maintenance cleanup for vitest #38

Workflow file for this run

name: Release Push
on:
push:
branches:
- release
jobs:
lint:
uses: cosmicmind/github-actions/.github/workflows/lint.yml@release
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
codeql:
uses: cosmicmind/github-actions/.github/workflows/codeql.yml@release
build:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: dev
NODE_ENV: development
VITE_MODE: test
test:
uses: cosmicmind/github-actions/.github/workflows/lib-build.yml@release
with:
BUILD_TARGET: test
NODE_ENV: development
VITE_MODE: test
publish:
needs:
- lint
- codeql
- build
- test
uses: cosmicmind/github-actions/.github/workflows/lib-publish.yml@release
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}