Skip to content

chore(deps-dev): bump jasmine-core from 5.1.1 to 5.1.2 in /client #90

chore(deps-dev): bump jasmine-core from 5.1.1 to 5.1.2 in /client

chore(deps-dev): bump jasmine-core from 5.1.1 to 5.1.2 in /client #90

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