feat(api): #3021 data integration lille (#3074) #3798
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
on: | |
push: | |
branches: [main, develop, PROD] | |
pull_request: | |
branches: [main, develop, PROD] | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
PUBLIC_AGENT_CONNECT_ENABLED: false | |
PUBLIC_ENV: test | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17" | |
- run: npm ci | |
- run: npm run build | |
- run: npm run generate | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/tsoa/ | |
**/build/ | |
**/node_modules/ | |
key: ${{ runner.os }}-node-${{ github.run_id }} | |
lint: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/tsoa/ | |
**/build/ | |
**/node_modules/ | |
key: ${{ runner.os }}-node-${{ github.run_id }} | |
- run: npm run lint | |
tests-api-integ: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/tsoa/ | |
**/build/ | |
**/node_modules/ | |
key: ${{ runner.os }}-node-${{ github.run_id }} | |
- run: npm run test:integ | |
working-directory: "./packages/api" | |
tests-api-unit: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/tsoa/ | |
**/build/ | |
**/node_modules/ | |
key: ${{ runner.os }}-node-${{ github.run_id }} | |
- run: npm run test:unit | |
working-directory: "./packages/api" | |
tests-front: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "18.17" | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
**/tsoa/ | |
**/build/ | |
**/node_modules/ | |
key: ${{ runner.os }}-node-${{ github.run_id }} | |
- run: npm run test | |
working-directory: "./packages/front" |