Skip to content

Merge pull request #26 from erik1110/feature/api #26

Merge pull request #26 from erik1110/feature/api

Merge pull request #26 from erik1110/feature/api #26

Workflow file for this run

name: Node.JS CI/CD
on:
push:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3 # was "v2" before
with:
fetch-depth: 0
- name: Use Node.JS ${{ matrix.node-version }}
uses: actions/setup-node@v3 # was "v2" before
with:
node-version: ${{ matrix.node-version }}
- name: NPM install, build and test
run: |
npm install
npm run build --if-present
npm run test --if-present
env:
MONGO_URI: ${{ secrets.MONGO_URI }}
ENCRYPT_JWT_SECRET: ${{ secrets.ENCRYPT_JWT_SECRET }}
JWT_SECRET: ${{ secrets.JWT_SECRET }}
JWT_EXPIRATION: ${{ secrets.JWT_EXPIRATION }}
# Heavily modified deploy job to fit render.com
deploy:
name: Deploy
needs: [test] # Our tests must pass in order to run the deploy job
runs-on: ubuntu-latest
steps:
- name: Deploy to production
uses: johnbeynon/[email protected]
with:
service-id: ${{ secrets.SERVICE_ID }} # Can be found as part of the Deploy Hook
api-key: ${{ secrets.RENDER_API_KEY }} # Create your API key in Render Dashboard > Account Settings