Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(service): initialize api and add health endpoint #1

Merged
merged 1 commit into from
Oct 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Esto verifica la compatibilidad con siguientes versiones de node

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
Loading