Skip to content

Bump @types/node from 20.8.5 to 20.8.7 #1302

Bump @types/node from 20.8.5 to 20.8.7

Bump @types/node from 20.8.5 to 20.8.7 #1302

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