Skip to content

refactor: seperate storybook (#1455) #1669

refactor: seperate storybook (#1455)

refactor: seperate storybook (#1455) #1669

Workflow file for this run

name: On Push
on:
push:
branches: main
env:
CI: true
NX_CLOUD_DISTRIBUTED_EXECUTION: true
jobs:
start:
uses: ./.github/workflows/start-nx-cloud.yml
test:
needs: start
uses: ./.github/workflows/test.yml
secrets:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
release:
needs: test
uses: ./.github/workflows/release-package.yml
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
report:
if: ${{ always() }}
needs: [release]
runs-on: ubuntu-latest
steps:
- name: on error
if: ${{ needs.release.result != 'success' }}
run: exit 1