Skip to content

Migrate to monorepo #136

Migrate to monorepo

Migrate to monorepo #136

Workflow file for this run

name: Main Workflow
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
static_tests:
name: Static Tests
uses: ./.github/workflows/.static-tests.yaml
build:
name: Build
uses: ./.github/workflows/.build.yaml
needs:
- static_tests
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
dynamic_tests:
name: Dynamic Tests
uses: ./.github/workflows/.dynamic-tests.yaml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODSPEED_TOKEN: ${{ secrets.CODSPEED_TOKEN }}
needs:
- build
- static_tests
release:
name: Release
uses: ./.github/workflows/.release.yaml
needs:
- static_tests
- build
- dynamic_tests
if: ${{ github.repository == 'kamiazya/web-csv-toolbox' && github.ref == 'refs/heads/main' && success() }}
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}