Fix prettier #2
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: Builds Nextjs site | |
on: | |
pull_request: | |
types: | |
- opened | |
- ready_for_review | |
- review_requested | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '18.x' | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: latest | |
- run: npm ci | |
- name: Copy environment variables | |
run: cp .env.example .env | |
- run: npm run build |