Merge pull request #4 from erik1110/feature/api #4
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: 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 start | |
npm run test | |
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 |