Skip to content

CI: Extract publish and pages to their own workflow #35

CI: Extract publish and pages to their own workflow

CI: Extract publish and pages to their own workflow #35

Workflow file for this run

name: "CI"
on: pull_request
jobs:
tests:
uses: ./.github/workflows/tests.yml
type-check:
uses: ./.github/workflows/type-check.yml
build:
needs: [tests, type-check]
uses: ./.github/workflows/build.yml
with:
artifact-name: "lib-${{ github.head_ref }}"
build-storybook:
needs: [tests, type-check]
uses: ./.github/workflows/build-storybook.yml
with:
artifact-name: "storybook-${{ github.head_ref }}"