Skip to content

build(deps): bump cross-spawn from 7.0.3 to 7.0.6 (#208) #207

build(deps): bump cross-spawn from 7.0.3 to 7.0.6 (#208)

build(deps): bump cross-spawn from 7.0.3 to 7.0.6 (#208) #207

Workflow file for this run

# This is the workflow for the CI/CD and release
#
name: Release
on:
push:
branches:
- main
- next
- beta
- alpha
concurrency:
group: ${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
lint-code:
name: '▶️ actions'
uses: eviden-actions/actions/.github/workflows/lint-code.yml@v1
test:
name: '🧪 Test'
needs: [lint-code]
uses: ./.github/workflows/test.yml
release:
name: '▶️ actions'
needs: [lint-code, test]
uses: eviden-actions/actions/.github/workflows/release.yml@v1
secrets:
GH_TOKEN: ${{ secrets.GH_TOKEN }}