-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04ad0a7
commit 0b5fead
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,15 +21,18 @@ jobs: | |
# Manual Checkout | ||
- uses: actions/checkout@v4 | ||
|
||
# Set up Node | ||
# Set up Node.js (using Node v20) | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '16.x' | ||
node-version: '20.x' # Updated to Node.js v20 | ||
|
||
#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow | ||
# Install dependencies | ||
- run: npm ci | ||
|
||
# Build Storybook and deploy to GitHub Pages | ||
- uses: bitovi/[email protected] | ||
with: | ||
install_command: npm ci # default: npm ci | ||
build_command: npm run build-storybook # default: npm run build-storybook | ||
path: storybook-static # default: dist/storybook | ||
checkout: false # default: true | ||
checkout: false # default: true |