Skip to content

PP-11314 add publishing workflow for release commits #25

PP-11314 add publishing workflow for release commits

PP-11314 add publishing workflow for release commits #25

Workflow file for this run

name: Run tests
on:
pull_request:
workflow_call:
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- name: Setup Node
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c
with:
node-version-file: '.nvmrc'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test