Skip to content

fix: removal of railway deployment demo #34

fix: removal of railway deployment demo

fix: removal of railway deployment demo #34

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest
environment: Production
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Install dependencies
shell: bash
run: pnpm install
- name: Lint
shell: bash
run: pnpm run lint
env:
SKIP_ENV_VALIDATION: true
- name: Build
shell: bash
env:
SKIP_ENV_VALIDATION: true
DATABASE_HOST: ${{ secrets.DATABASE_HOST }}
DATABASE_USERNAME: ${{ secrets.DATABASE_USERNAME }}
DATABASE_PASSWORD: ${{ secrets.DATABASE_PASSWORD }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: pnpm run build