Skip to content

chore(deps-dev): bump @types/node from 20.11.5 to 20.14.9 in /client #164

chore(deps-dev): bump @types/node from 20.11.5 to 20.14.9 in /client

chore(deps-dev): bump @types/node from 20.11.5 to 20.14.9 in /client #164

Workflow file for this run

name: Node.js
on:
push:
branches:
- main
- release/**
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
cache-dependency-path: client/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --if-present
# TODO: Enable this step when tests are added
# - name: Test
# run: npm test