Skip to content

Bump the minor-patch group in /ams-cap-nodejs-bookshop with 2 updates… #132

Bump the minor-patch group in /ams-cap-nodejs-bookshop with 2 updates…

Bump the minor-patch group in /ams-cap-nodejs-bookshop with 2 updates… #132

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: CAP sample
permissions:
contents: read
on:
push:
branches: [ "main" ]
paths:
- "ams-cap-nodejs-bookshop/**"
- ".github/workflows/build_and_test_cap.yml"
pull_request:
branches: [ "**" ]
paths:
- "ams-cap-nodejs-bookshop/**"
- ".github/workflows/build_and_test_cap.yml"
jobs:
npm:
runs-on: [ ubuntu-latest ]
strategy:
matrix:
node-version: [22.x, 24.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@900f2210b1d28bbbd0bd22d17926b9e224e8f231
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@670825a89dc0abd596e7a3abd0f5e3f6e5faf37c
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ams-cap-nodejs-bookshop
- name: Set up JDK 17 # for DCL -> DCN compilation to work before tests
uses: actions/setup-java@b622de1dfa918ecc0ab28f40cd42e3c3752cd6c5
with:
java-version: '17'
distribution: 'temurin'
- run: npm ci
working-directory: ams-cap-nodejs-bookshop
- run: npm test
working-directory: ams-cap-nodejs-bookshop