Skip to content

chore(deps): update dependency msw to v2 #709

chore(deps): update dependency msw to v2

chore(deps): update dependency msw to v2 #709

Workflow file for this run

name: 'Chromatic Deployment'
on: push
# only run test with latest commit
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
chromatic-deploy:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: --max-old-space-size=6144
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0 # disable shallow checkout, chromatic need git history
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Publish to Chromatic
uses: chromaui/action@v1
# Chromatic GitHub Action options
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
exitOnceUploaded: true