Skip to content

Bump chromatic from 6.17.3 to 6.21.0 #3354

Bump chromatic from 6.17.3 to 6.21.0

Bump chromatic from 6.17.3 to 6.21.0 #3354

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
pull_request:
branches: [main, next, ob/postgres-prisma-migration]
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# enables use to use the cache in actions/setup-node
- uses: pnpm/[email protected]
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
# - name: Typecheck
# run: pnpm check
- name: Test
run: pnpm test