Enhancement/8981 Refactor RRM Setup Success Notification #19999
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: Storybook | |
on: | |
push: | |
branches: | |
- develop | |
- main | |
# Only run if CSS/JS/MD-related files changed. | |
paths: | |
- '.github/workflows/storybook.yml' | |
- 'assets/**' | |
- 'stories/**' | |
- '!assets/**/__tests__/**/*.js' | |
- '!assets/**/test/*.js' | |
- '!assets/**/*.test.js' | |
- '.storybook/**' | |
- '!.storybook/storybook-data.js' | |
- '**.scss' | |
- '.nvmrc' | |
- '**/package.json' | |
- 'package-lock.json' | |
pull_request: | |
branches: | |
- develop | |
- main | |
- 'feature/**' | |
# Only run if CSS/JS/MD-related files changed. | |
paths: | |
- '.github/workflows/storybook.yml' | |
- 'assets/**' | |
- 'stories/**' | |
- '!assets/**/__tests__/**/*.js' | |
- '!assets/**/test/*.js' | |
- '!assets/**/*.test.js' | |
- '.storybook/**' | |
- '!.storybook/storybook-data.js' | |
- '**.scss' | |
- '.nvmrc' | |
- '**/package.json' | |
- 'package-lock.json' | |
types: | |
- opened | |
- closed | |
- reopened | |
- synchronize | |
- ready_for_review | |
concurrency: | |
group: storybook-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-storybook: | |
name: Build Storybook | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
if: false == ( ( github.event_name == 'pull_request' && ( github.event.action == 'closed' || github.event.pull_request.draft == true || contains( github.head_ref, 'dependabot/' ) ) ) || github.event.pull_request.head.repo.fork ) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js (.nvmrc) | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: npm install | |
run: | | |
npm ci | |
- name: Build Storybook | |
run: | | |
npm run build:storybook | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: storybook-files | |
path: dist | |
deploy-storybook: | |
name: Deploy Storybook | |
runs-on: ubuntu-latest | |
needs: build-storybook | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
token: ${{ secrets.GH_BOT_TOKEN }} | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: storybook-files | |
path: dist | |
- name: Set branch environment variables | |
id: branch-target | |
if: github.event_name != 'pull_request' | |
run: echo "dir=${GITHUB_REF##*/}" >> "$GITHUB_OUTPUT" | |
- name: Set PR environment variables | |
id: pr-target | |
if: github.event_name == 'pull_request' | |
env: | |
PULL_REQUEST_NUMBER: ${{ github.event.number }} | |
run: echo "dir=pull/${PULL_REQUEST_NUMBER}" >> "$GITHUB_OUTPUT" | |
- name: Commit updates | |
run: | | |
mkdir -p "storybook/${TARGET_DIR}" | |
rm -rf "storybook/${TARGET_DIR}" | |
mv dist "storybook/${TARGET_DIR}" | |
git add . | |
git status | |
git diff --staged --quiet && echo 'No changes to commit; exiting!' && exit 0 | |
git pull --no-edit --quiet | |
git commit -m "Deploy storybook for ${TARGET_DIR}." | |
git push origin gh-pages | |
env: | |
TARGET_DIR: ${{ steps.branch-target.outputs.dir }}${{ steps.pr-target.outputs.dir }} | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_AUTHOR_NAME: google-site-kit-bot | |
GIT_COMMITTER_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: google-site-kit-bot | |
remove-storybook: | |
name: Remove Storybook | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
if: ( github.event_name == 'pull_request' && github.event.action == 'closed' && contains( github.head_ref, 'dependabot/' ) == false ) && github.event.pull_request.head.repo.fork == false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
token: ${{ secrets.GH_BOT_TOKEN }} | |
- name: Remove storybook | |
env: | |
PULL_REQUEST_NUMBER: ${{ github.event.number }} | |
GIT_AUTHOR_EMAIL: [email protected] | |
GIT_AUTHOR_NAME: google-site-kit-bot | |
GIT_COMMITTER_EMAIL: [email protected] | |
GIT_COMMITTER_NAME: google-site-kit-bot | |
run: | | |
git rm -rf "storybook/pull/${PULL_REQUEST_NUMBER}" | |
git status | |
git diff --staged --quiet && echo 'No changes to commit; exiting!' && exit 0 | |
git pull --no-edit --quiet | |
git commit -m "Remove storybook for pull/${PULL_REQUEST_NUMBER}." | |
git push origin gh-pages | |
test-storybook: | |
name: Test Storybook | |
runs-on: ubuntu-latest | |
needs: build-storybook | |
timeout-minutes: 20 | |
if: false == ( ( github.event_name == 'pull_request' && ( github.event.action == 'closed' || github.event.pull_request.draft == true || contains( github.head_ref, 'dependabot/' ) ) ) || github.event.pull_request.head.repo.fork ) | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: storybook-files | |
path: dist | |
- name: Setup Node.js (.nvmrc) | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: npm install | |
run: | | |
npm ci | |
- name: Test Storybook | |
run: | | |
npm run test:storybook |