Skip to content

build(deps-dev): bump eslint-plugin-vue from 9.17.0 to 9.26.0 #280

build(deps-dev): bump eslint-plugin-vue from 9.17.0 to 9.26.0

build(deps-dev): bump eslint-plugin-vue from 9.17.0 to 9.26.0 #280

Workflow file for this run

name: Chromatic
on: push
jobs:
chromatic_deployment:
name: Deploy storybook to chromatic
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache node modules
uses: actions/cache@v3
id: cache
env:
cache-name: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('yarn.lock') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
exitOnceUploaded: true