Skip to content

LYS-14-integrazione-CI-CD #18

LYS-14-integrazione-CI-CD

LYS-14-integrazione-CI-CD #18

Workflow file for this run

name: photo-testing
on:
workflow_call:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [22]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run Unit tests with coverage
run: npm run test:unit
- name: Run Bdd
run: npm run test:bdd