Skip to content

Cleanup

Cleanup #51

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'npm'
- name: setup environment
# copy .env.local.example to .env.local and set the environment variables MONGODB_URI from the secrets
run: |
cp .env.local.example .env.local
echo "MONGODB_URI=${{ secrets.MONGODB_URI }}" >> .env.local
cat .env.local
- name: npm install, build and test
run: |
npm ci
npm run build --if-present
npm test