Skip to content

[Formatting] npm run format #131

[Formatting] npm run format

[Formatting] npm run format #131

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" ]
env:
NODE_ENV: development
STUDY_BUDDY_DEFAULT_EMAIL_ADDRESS: ${{ secrets.STUDY_BUDDY_DEFAULT_EMAIL_ADDRESS }}
STUDY_BUDDY_MAILGUN_LOGIN: ${{ secrets.STUDY_BUDDY_MAILGUN_LOGIN }}
STUDY_BUDDY_MAILGUN_PASSWORD: ${{ secrets.STUDY_BUDDY_MAILGUN_PASSWORD }}
STUDY_BUDDY_EMAIL_ADDRESS: ${{ secrets.STUDY_BUDDY_EMAIL_ADDRESS }}
STUDY_BUDDY_SESSION_SECRET_1: ${{ secrets.STUDY_BUDDY_SESSION_SECRET_1 }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.14.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
# Use the same version used in Render: https://render.com/docs/node-version/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci --if-present
- run: npm run format:check
- run: npm run build --if-present
- run: npm test