Skip to content

build: Bump @types/node from 22.13.5 to 22.13.9 #3762

build: Bump @types/node from 22.13.5 to 22.13.9

build: Bump @types/node from 22.13.5 to 22.13.9 #3762

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install
- name: Run linter
run: yarn lint
- name: Check TypeScript Compilation
run: yarn tsc
- name: Build Project
run: yarn build
- name: Run unit tests
run: yarn test