Skip to content
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
7 changes: 1 addition & 6 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ on:
pull_request:
workflow_dispatch:
jobs:
checkout:
test:
runs-on: ubuntu-latest
environment: dev
steps:
- name: Get code
uses: actions/checkout@v4
Expand All @@ -19,9 +18,5 @@ jobs:
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
test:
runs-on: ubuntu-latest
needs: checkout
steps:
- name: Run tests
run: npm run test
2 changes: 1 addition & 1 deletion src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import { SchoolModule } from './school/school.module';
},
{
provide: 'APP_NAME',
useValue: 'The best Nest events backend',
useValue: 'The Nest events application backend',
},
{
provide: 'MESSAGE',
Expand Down