Skip to content

Commit

Permalink
feat(service): initialize api and add health endpoint (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
pablojvritx committed Oct 1, 2023
1 parent 86356be commit ee3be49
Show file tree
Hide file tree
Showing 25 changed files with 11,475 additions and 4,085 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ ]
language: ["javascript"]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
Expand Down
45 changes: 45 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Node CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
- name: Run linting
run: |
npm run lint
- name: Build
run: |
npm run build --if-present
- name: Run tests and generate coverage
run: |
npm run test
- name: Prepare SonarCloud analysis
run: |
npm install -g sonarqube-scanner
sonar-scanner \
-Dsonar.projectKey=vinjatovix_ts-api \
-Dsonar.organization=vinjatovix \
-Dsonar.sources=src \
-Dsonar.exclusions=node_modules/**,coverage/**,dist/**,build/** \
-Dsonar.tests=tests \
-Dsonar.test.inclusions=**/*.test.ts \
-Dsonar.javascript.lcov.reportPaths=coverage/lcov-merged.info \
-Dsonar.login=$SONAR_TOKEN
14 changes: 14 additions & 0 deletions cucumber.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

const common = [
'--require-module ts-node/register' // Load TypeScript module
];

const apiApp_backend = [
...common,
'tests/apps/apiApp/backend/features/**/*.feature',
'--require tests/apps/apiApp/backend/features/step_definitions/*.steps.ts'
].join(' ');

module.exports = {
apiApp_backend
};
8 changes: 8 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
cacheDirectory: '.tmp/jestCache',
collectCoverage: true,
collectCoverageFrom: ['<rootDir>/src/**/*.ts'],
coverageDirectory: '<rootDir>/coverage',
};
Loading

0 comments on commit ee3be49

Please sign in to comment.