Skip to content

Merge pull request #122 from chromaui/jarel/ap-4259-outdated-storyboo… #28

Merge pull request #122 from chromaui/jarel/ap-4259-outdated-storyboo…

Merge pull request #122 from chromaui/jarel/ap-4259-outdated-storyboo… #28

Workflow file for this run

# Workflow for the main branch
# Runs the test workflows and the release workflow
name: Test and Release Main
on:
push:
branches:
- main
jobs:
test:
uses: ./.github/workflows/test-base.yml
secrets:
codacyProjectToken: ${{ secrets.CODACY_PROJECT_TOKEN }}
test_cypress:
needs: test
uses: ./.github/workflows/test-cypress.yml
secrets:
chromaticProjectToken: ${{ secrets.CHROMATIC_CYPRESS_PROJECT_TOKEN }}
test_playwright:
needs: test
uses: ./.github/workflows/test-playwright.yml
secrets:
chromaticProjectToken: ${{ secrets.CHROMATIC_PLAYWRIGHT_PROJECT_TOKEN }}
release:
needs: test
uses: ./.github/workflows/release.yml
secrets:
githubToken: ${{ secrets.GITHUB_TOKEN }}
npmToken: ${{ secrets.NPM_CHROMATIC_COM_PUBLISH_TOKEN }}