Skip to content

Commit

Permalink
🩹 Fiw style guide errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MaloLebrin committed May 9, 2023
1 parent 14d226a commit a6a14a6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI-Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ jobs:

- name: 🏗 Build
run: nr tsc

- name: ✅ Tests
run: nr test:ci
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ on:
tags:
- '*'

jobs:
new-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # Checkout our working repository
jobs:
new-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3 # Checkout our working repository

- name: 📚 Changelog
uses: scottbrenner/generate-changelog-action@master
Expand Down
4 changes: 2 additions & 2 deletions src/controllers/BugReportController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default class BugReportController {
const bugReport = await this.BugReportService.getOne(id)
return bugReport ? res.status(200).json(bugReport) : res.status(400).json('user not found')
}
throw new ApiError(422, 'L\identifiant est requis')
throw new ApiError(422, 'L\'identifiant est requis')
})
}

Expand Down Expand Up @@ -100,7 +100,7 @@ export default class BugReportController {
const deletedBugReport = await this.BugReportService.deleteOne(id)
return res.status(200).json(deletedBugReport)
}
throw new ApiError(422, 'L\identifiant est requis')
throw new ApiError(422, 'L\'identifiant est requis')
})
}
}
11 changes: 0 additions & 11 deletions src/migrations/1675863450354-add-bornAt-employee.ts

This file was deleted.

0 comments on commit a6a14a6

Please sign in to comment.