Skip to content

Bump @types/node from 22.5.1 to 22.5.2 #199

Bump @types/node from 22.5.1 to 22.5.2

Bump @types/node from 22.5.1 to 22.5.2 #199

Workflow file for this run

name: Main PR
on:
pull_request:
branches:
- main
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
cache-dependency-path: package-lock.json
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
env:
NODE_OPTIONS: --experimental-vm-modules
run: npm run test
- name: Run App
run: npm --silent run start