Skip to content

fix(deps): update all application-kit packages to v27 #2241

fix(deps): update all application-kit packages to v27

fix(deps): update all application-kit packages to v27 #2241

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- run: |
git checkout -b main origin/main
git checkout -
- name: Install pnpm
uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10
id: pnpm-install
with:
run_install: false
- name: Setup Node (uses version in .nvmrc)
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.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