feat: workflow #9
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 | |
run: sudo apt-get update && sudo apt-get install -y mongodb-clients | |
- 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"})' | mongo mongodb://test:test@localhost:27017 | |
- name: Run Jest tests | |
run: npm test |