Merge pull request #728 from danskernesdigitalebibliotek/develop #2057
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: 'Chromatic' | |
on: | |
push: | |
branches: | |
# Required for creating baselines | |
- main | |
- develop | |
- release/* | |
pull_request: | |
types: [ready_for_review, opened, synchronize] | |
# Detect if this action is already running, and cancel it. | |
# This most likely happened because a second push has been made to a branch. | |
concurrency: | |
group: ${{ github.repository_id }}-${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
chromatic-deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
- run: yarn install --frozen-lockfile | |
- run: yarn css:build | |
- name: Publish to Chromatic | |
uses: chromaui/action@v11.10.2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
projectToken: c6b96f9648b6 |