Skip to content

build(deps-dev): bump @types/node from 20.14.5 to 20.14.6 #309

build(deps-dev): bump @types/node from 20.14.5 to 20.14.6

build(deps-dev): bump @types/node from 20.14.5 to 20.14.6 #309

Workflow file for this run

name: Test Code
on:
push:
branches:
- dev
jobs:
test-code:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setting Up Pnpm
uses: pnpm/action-setup@v4
with:
version: 8
- name: Setting Up Node
uses: actions/setup-node@v4
with:
cache: pnpm
node-version: ${{ matrix.node-version }}
- name: Installing Project Dependencies
run: pnpm install
- name: Building Project
run: pnpm build
- name: Running Test
run: pnpm test
env:
CLUSTERING: false
PORT: 3000