Skip to content

chore(deps): update storybook monorepo to v8 (major) #373

chore(deps): update storybook monorepo to v8 (major)

chore(deps): update storybook monorepo to v8 (major) #373

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
main:
name: Tests
runs-on: ubuntu-latest
# To use Turborepo Remote Caching, set the following environment variables for the job.
env:
CI: true
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Cypress
run: cd packages/react && npx cypress install && npx cypress run --component && cd -
# - name: Cypress run
# uses: cypress-io/github-action@v5
# with:
# command-prefix: npx
# install: false
# component: true
# working-directory: ./packages/react