Skip to content
Merged
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
9 changes: 3 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
node-version: 24
cache: npm
- run: npm i
- run: npm ci
- run: npm run build:ci
- uses: codecov/codecov-action@v5
with:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
node-version: 24
cache: npm
- name: Install dependencies
run: npm i
run: npm ci
- name: Deploy job
run: npm run deploy
- name: Upload artifact
Expand All @@ -85,10 +85,8 @@ jobs:
with:
node-version: 24
cache: npm
- name: Update npm
run: npm update -g npm
- name: Install dependencies
run: npm i
run: npm ci
- name: Release
id: changesets
uses: changesets/action@v1
Expand All @@ -102,4 +100,3 @@ jobs:
# Disable husky
HUSKY: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ''
7 changes: 2 additions & 5 deletions .github/workflows/percy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
node-version: 'lts/*'

- name: Install dependencies
run: npm i
run: npm ci

- name: Detect changed components
id: detect
Expand All @@ -58,9 +58,6 @@ jobs:
sass-dir: 'packages/skin/src/sass'
base-branch: 'main'

- name: Copy Storybook assets
run: npm run copy:assetsToStorybook -w packages/skin

- name: Run Percy (Partial)
if: steps.detect.outputs.components != '' && steps.detect.outputs.components != 'all'
env:
Expand Down Expand Up @@ -89,7 +86,7 @@ jobs:
node-version: 'lts/*'

- name: Install dependencies
run: npm i
run: npm ci

- name: Run Percy (All - Auto-approve)
env:
Expand Down
Loading