Skip to content

added planets data in test #7

added planets data in test

added planets data in test #7

Workflow file for this run

name: Nasa Project CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
CI: true
MONGO_URL: mongodb://localhost/nasa
strategy:
matrix:
mongodb-version: ['4.4']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use Node.js version16
uses: actions/setup-node@v4
with:
node-version: 18
- name: use mongoDb from github actions
uses: supercharge/mongodb-github-action@1.6.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
- run: npm install
- run: npm run build --prefix client
- run: npm test