feat: workflow #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
mongodb: | |
image: mongo | |
ports: | |
- 27017:27017 | |
env: | |
MONGO_INITDB_ROOT_USERNAME: test | |
MONGO_INITDB_ROOT_PASSWORD: test | |
MONGO_INITDB_ROOT_ROLE: dbOwner | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install | |
- name: Install MongoDB client (mongosh) | |
run: | | |
wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add - | |
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/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 mongosh | |
- name: Create .env.test file | |
env: | |
PORT: ${{ secrets.PORT }} | |
NODE_ENV: development | |
JWT_SECRET: ${{ secrets.JWT_SECRET }} | |
ORIGIN: "*" | |
run: | | |
echo "PORT=${PORT}" >> .env.test | |
echo "MONGODB_URI=mongodb://test:test@localhost:27017" >> .env.test | |
echo "NODE_ENV=${NODE_ENV}" >> .env.test | |
echo "JWT_SECRET=${JWT_SECRET}" >> .env.test | |
echo "ORIGIN=${ORIGIN}" >> .env.test | |
- name: Setup Admin Document | |
run: | | |
echo 'db.Admin.insertOne({username: "test", password: "test"})' | mongosh mongodb://test:test@localhost:27017 | |
- name: Run Jest tests | |
run: npm test |