Skip to content

Update node.js.yml

Update node.js.yml #15

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: [ "master" ]
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [20.13.1]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
env:
DATABASE_URL: ${{secrets.DATABASE_URL}}
NEXTAUTH_SECRET: ${{secrets.NEXTAUTH_SECRET}}
CLOUDINARY_URL: ${{secrets.CLOUDINARY_URL}}
NEXTAUTH_URL: ${{secrets.NEXTAUTH_URL}}
GOOGLE_APP_PASSWORD: ${{secrets.GOOGLE_APP_PASSWORD}}
GOOGLE_EMAIL: ${{secrets.GOOGLE_EMAIL}}
steps:
- name: installing dependencies
run: npm i
- name: sync database
run: npm run prisma:generate
- name: building website
run: npm run build --if-present