Skip to content

chore(deps): trivial major-version dependency migrations #2194

chore(deps): trivial major-version dependency migrations

chore(deps): trivial major-version dependency migrations #2194

Workflow file for this run

name: Pull request workflow
on:
pull_request:
jobs:
build_lint_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
fetch-depth: 0
- run: |
git checkout -b main origin/main
git checkout -
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
id: pnpm-install
with:
run_install: false
- name: Setup Node (uses version in .nvmrc)
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Building packages
run: pnpm build
- name: Running static type checking
run: pnpm typecheck
- name: Running linters and tests
run: pnpm jest --projects jest.{eslint,test}.config.js --changedSince=main
env:
CI: true