8000 chore: update ci config by Tony133 · Pull Request #748 · Tony133/nestjs-postgres · GitHub
[go: up one dir, main page]

Skip to content

chore: update ci config #748

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

Merged
merged 1 commit into from
Aug 13, 2024
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/nodejs-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Docker Compose
run: |
sudo apt-get update
sudo apt-get install -y docker-compose
- name: Start Docker-Compose
run: cd tests && docker-compose up -d
- name: Install npm
Expand All @@ -49,4 +53,4 @@ jobs:
- name: Run tests e2e
run: npm run test:e2e
- name: Stop Docker-Compose
run: cd tests && docker-compose down -v
run: cd tests && docker-compose down -v
0