mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
053443e237
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
---
|
|
name: Chromatic
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '.github/workflows/**'
|
|
|
|
jobs:
|
|
chromatic:
|
|
name: Chromatic
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Get Node Version
|
|
id: retrieve-node-version
|
|
run: |
|
|
NODE_NVMRC=$(cat .nvmrc)
|
|
NODE_VERSION=${NODE_NVMRC/v/''}
|
|
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
|
|
with:
|
|
node-version: ${{ steps.retrieve-node-version.outputs.node_version }}
|
|
|
|
- name: Cache npm
|
|
id: npm-cache
|
|
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
|
|
with:
|
|
path: "~/.npm"
|
|
key: ${{ runner.os }}-npm-chromatic-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
- name: Install Node dependencies
|
|
run: npm ci
|
|
|
|
# Manual build the storybook to resolve a chromatic/storybook bug related to TurboSnap
|
|
- name: Build Storybook
|
|
run: npm run build-storybook:ci
|
|
|
|
- name: Publish to Chromatic
|
|
uses: chromaui/action@d726e4e790a99e876f71b8e09d3053bfe783d6b8
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
|
|
storybookBuildDir: ./storybook-static
|
|
exitOnceUploaded: true
|
|
onlyChanged: true
|
|
externals: "[\"libs/components/**/*.scss\", \"libs/components/**/*.css\", \"libs/components/tailwind.config*.js\"]"
|