Make page grid work properly on narrow screens #1308
Workflow file for this run
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
name: Continuous Delivery | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Set up Node.js version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17.1" | |
- uses: pnpm/action-setup@v2.4.0 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: | | |
pnpm install | |
pnpm ls --recursive | |
build-lint-test: | |
runs-on: ubuntu-latest | |
needs: install | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Set up Node.js version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17.1" | |
- uses: pnpm/action-setup@v2.4.0 | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 8 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
run: | | |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: | | |
pnpm install | |
- name: "Continuous Integration: build" | |
run: | | |
pnpm run --if-present build | |
- name: "Continuous Integration: lint" | |
run: | | |
pnpm run --if-present lint | |
- name: "Continuous Integration: test" | |
run: | | |
pnpm run --if-present test | |
- name: "Retain build artifact: storybook docs" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: storybook-docs | |
path: storybook/storybook-docs/dist/ | |
retention-days: 1 | |
- name: "Retain build artifact: storybook React" | |
uses: actions/upload-artifact@v3 | |
with: | |
name: storybook-react | |
path: storybook/storybook-react/dist/ | |
retention-days: 1 | |
publish-storybook: | |
runs-on: ubuntu-latest | |
needs: build-lint-test | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- name: Checkout release branch | |
uses: actions/checkout@v4 | |
- name: "Restore build artifact: Storybook docs" | |
uses: actions/download-artifact@v3 | |
with: | |
name: storybook-docs | |
path: dist/storybook | |
- name: "Restore build artifact: Storybook react" | |
uses: actions/download-artifact@v3 | |
with: | |
name: storybook-react | |
# React storybook is deployed to the /storybook-react subdirectory. | |
# In the main css storybook, the contents of /storybook-react | |
# are also shown using Storybook composition. | |
path: dist/storybook/storybook-react | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/github-pages-deploy-action@v4.4.3 | |
with: | |
branch: gh-pages | |
folder: dist/storybook |