Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/deploy-storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,6 @@ jobs:
- name: Install Dependencies
uses: ./.github/actions/install

- name: Cache turbo
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .turbo
key: ${{ runner.os }}-turbo-build-storybook-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-build-storybook-

- name: Build Storybook
run: |
pnpm build:storybook
Expand Down
29 changes: 0 additions & 29 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,35 +154,6 @@ jobs:
- name: Run Tests With Build
run: pnpm test:requires-build --affected

build-storybook:
name: Build Storybook
runs-on: ubuntu-latest

permissions:
contents: read

steps:
- name: Checkout source code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
filter: 'blob:none'
persist-credentials: false

- name: Install Dependencies
uses: ./.github/actions/install

- name: Cache turbo
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
with:
path: .turbo
key: ${{ runner.os }}-turbo-build-storybook-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-build-storybook-

- name: Run Build Storybook
run: pnpm build:storybook --affected

packages-versions:
name: Check Packages Versions
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test:coverage": "turbo run test:coverage",
"test:requires-build": "turbo run test:requires-build",
"build": "turbo run build",
"build:storybook": "turbo run build:storybook",
"build:storybook": "pnpm run --filter=@drivenets/design-system build:storybook",
"figma:lint": "turbo run figma:lint",
"figma:publish": "pnpm run --filter @drivenets/design-system figma:publish",
"changelog": "changeset",
Expand Down
4 changes: 0 additions & 4 deletions packages/design-system/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@
"install:playwright": {
"dependsOn": []
},
"build:storybook": {
"outputs": ["storybook-static/**"],
"inputs": ["$TURBO_DEFAULT$", "$TURBO_ROOT$/packages/vite-plugin/**"]
},
"figma:lint": {
"dependsOn": [],
"inputs": ["**/*.figma.ts", "figma.config.json"]
Expand Down
Loading