Skip to content

Created vite-plugin-hyperstyles plugin #56

Created vite-plugin-hyperstyles plugin

Created vite-plugin-hyperstyles plugin #56

Workflow file for this run

name: Static Website Build
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
on:
push:
branches: [main]
jobs:
test:
name: Static Website Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: Build the static website
run: |
yarn config set -H enableImmutableInstalls false
yarn install
yarn run build:storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: './storybook/storybook-static'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4