Skip to content

feat: ajout des libellés et anciens libellés de certification dans l'API #673

feat: ajout des libellés et anciens libellés de certification dans l'API

feat: ajout des libellés et anciens libellés de certification dans l'API #673

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- run: make ci
- run: make test
# codecov server
- name: Upload Server coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./server/.coverage
name: codecov-server
verbose: true
# codecov ui
- name: Upload UI coverage to Codecov
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./ui/coverage
name: codecov-ui
verbose: true