Skip to content

Commit

Permalink
ci(fix): minor
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharbansal22 committed Apr 2, 2024
1 parent 3ec4d3d commit ac02c00
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/dev_test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Run Tests

on:
push:
branches:
Expand Down Expand Up @@ -28,7 +29,12 @@ jobs:
run: npm install

- name: Install MongoDB client
run: sudo apt-get update && sudo apt-get install -y mongodb-clients
run: |
sudo apt-get update
wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -
echo "deb http://repo.mongodb.org/apt/ubuntu $(lsb_release -sc)/mongodb-org/5.0 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-5.0.list
sudo apt-get update
sudo apt-get install -y mongodb-org-tools
- name: Create .env.test file
env:
Expand Down

0 comments on commit ac02c00

Please sign in to comment.