Skip to content

build(deps-dev): bump @testing-library/cypress from 8.0.3 to 10.0.2 #3648

build(deps-dev): bump @testing-library/cypress from 8.0.3 to 10.0.2

build(deps-dev): bump @testing-library/cypress from 8.0.3 to 10.0.2 #3648

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@v4
# enables use to use the cache in actions/setup-node
- uses: pnpm/action-setup@v4.0.0
- 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