.github/workflows/run-tests-lib.yml
name: LIB - Run Tests
on:
workflow_dispatch:
workflow_call:
inputs:
branch_name:
required: true
type: string
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch_name }}
- name: Node 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- uses: actions/cache@v4
id: cache-npm
with:
path: |
node_modules
api/node_modules
app/node_modules
admin/node_modules
packages/ds/node_modules
packages/lib/node_modules
key: ${{ runner.os }}-nodemodules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-nodemodules-
- name: Install packages
if: steps.cache-npm.outputs.cache-hit != 'true'
run: npm ci
- name: Build lib
working-directory: packages/lib
run: npm run build
- name: Lint lib code
working-directory: packages/lib
run: npm run lint
- name: Test lib
working-directory: packages/lib
run: npm run test
- name: Build ds
working-directory: packages/ds
run: npm run build
- name: Lint ds code
working-directory: packages/ds
run: npm run lint