Skip to content

Commit

Permalink
Refactor the code (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
anjula-sack authored Aug 6, 2023
1 parent 50f4bdc commit 9363aa4
Show file tree
Hide file tree
Showing 27 changed files with 3,580 additions and 688 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"standard-with-typescript",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": ["@typescript-eslint", "prettier", "unused-imports"],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/naming-convention": 0,
"@typescript-eslint/no-misused-promises": 0,
"@typescript-eslint/strict-boolean-expressions": 0,
"unused-imports/no-unused-imports": "error"
}
}
56 changes: 56 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:

runs-on: ubuntu-latest

services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: mydatabase
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install dependencies
run: npm install

- name: ESLint check
run: npm run lint

- name: Set up environment variables
run: |
echo "DB_USER=postgres" >> .env
echo "DB_HOST=localhost" >> .env
echo "DB_NAME=mydatabase" >> .env
echo "DB_PASSWORD=password" >> .env
echo "DB_PORT=5432" >> .env
echo "SERVER_PORT=4000" >> .env
echo "JWT_SECRET=your_jwt_secret_key" >> .env
- name: Run tests
run: npm run test

- name: Build
run: npm run build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
.env
dist/
7 changes: 4 additions & 3 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"trailingComma": "es5",
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true
"semi": false,
"singleQuote": true,
"endOfLine": "auto"
}
9 changes: 0 additions & 9 deletions eslint.ts

This file was deleted.

3 changes: 2 additions & 1 deletion jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export default {
preset: 'ts-jest',
testEnvironment: 'node',
};
modulePathIgnorePatterns: ['<rootDir>/dist/']
}
Loading

0 comments on commit 9363aa4

Please # to comment.