Skip to content

build: bump @types/node from 22.1.0 to 22.10.2 #1023

build: bump @types/node from 22.1.0 to 22.10.2

build: bump @types/node from 22.1.0 to 22.10.2 #1023

Workflow file for this run

name: Checks
on:
merge_group:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Unit testing
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Setup packages
run: pnpm install
- name: Unit tests
run: pnpm exec lerna run test
lint:
name: Linting
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_REGISTRY_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Setup packages
run: pnpm install
- name: Lint
run: pnpm run lint
- name: Type Check
run: pnpm exec lerna run typecheck