diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml deleted file mode 100644 index 207642f2a..000000000 --- a/.github/workflows/cla.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: CLA Assistant -on: - issue_comment: - types: [created] - pull_request_target: - types: [opened, closed, synchronize] -jobs: - claAssistant: - runs-on: ubuntu-latest - steps: - - name: Check signed CLA - if: (github.event.comment.body == 'recheckcla' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' - uses: cla-assistant/github-action@master - env: - GITHUB_TOKEN: ${{ secrets.GH_PAT }} - PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_PAT }} - with: - path-to-signatures: cla-signatures.json - path-to-document: https://github.com/koj-co/.github/blob/master/CLA.md - allowlist: dependabot-preview[bot], dependabot[bot], greenkeeper[bot], *bot, bot* - remote-organization-name: koj-co - remote-repository-name: .github - signed-commit-message: ":wrench: @$contributorName has signed the CLA in #$pullRequestNo" - create-file-commit-message: ":wrench: Creating a file for storing CLA signatures" - custom-allsigned-prcomment: "✍️ All contributors have signed the CLA" - custom-notsigned-prcomment: "Thanks for your submission! We ask that $you sign our [Contributor License Agreement]($pathToCLADocument) before we can accept your contribution. You can sign the CLA by adding a comment below using this text:" diff --git a/src/app.controller.spec.ts b/src/app.controller.spec.ts deleted file mode 100644 index d22f3890a..000000000 --- a/src/app.controller.spec.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { AppController } from './app.controller'; -import { AppService } from './app.service'; - -describe('AppController', () => { - let appController: AppController; - - beforeEach(async () => { - const app: TestingModule = await Test.createTestingModule({ - controllers: [AppController], - providers: [AppService], - }).compile(); - - appController = app.get(AppController); - }); - - describe('root', () => { - it('should return "Hello World!"', () => { - expect(appController.getHello()).toBe('Hello World!'); - }); - }); -});