feat(api): 3556 - MAJ de l'import de PDR (uniquement par matricule) #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: API V2 - Run Tests | |
on: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
branch_name: | |
required: true | |
type: string | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
types: | |
- checks_requested | |
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: | | |
apiv2/node_modules | |
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: Run tests | |
working-directory: apiv2 | |
run: npm test |