Skip to content

chore: web redirect for test subdomain. (#202) #431

chore: web redirect for test subdomain. (#202)

chore: web redirect for test subdomain. (#202) #431

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node
uses: actions/[email protected]
with:
node-version: '20.11.0'
- name: Install Dependencies
run: npm ci
- name: Save error log
uses: actions/[email protected]
if: ${{ failure() }}
with:
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
path: npm-debug.log
- name: Circular Dependencies
run: npm run cycles
- name: Lint
run: npm run lint
- name: Build Docker
env:
SERVER_NAME: busmap.ci
HOST_NAME: busmap.ci
UPSTREAM_API_HOST: ci
SSL_CERT_PATH: /etc/ci/file.pem
SSL_KEY_PATH: /etc/ci/file.key
BM_COOKIE_SECRET: ${{ secrets.BM_COOKIE_SECRET }}
BM_POSTGRES_PASSWORD: ${{ secrets.BM_POSTGRES_PASSWORD }}
BM_POSTGRES_USER: ${{ secrets.BM_POSTGRES_USER }}
BM_POSTGRES_DB: ${{ secrets.BM_POSTGRES_DB }}
SSO_GOOG_CLIENT_ID: ${{ secrets.SSO_GOOG_CLIENT_ID }}
SSO_GOOG_CLIENT_SECRET: ${{ secrets.SSO_GOOG_CLIENT_SECRET }}
run: docker compose -f compose.yaml -f compose.production.yaml build stage
- name: Build Components
run: npm run build -w @busmap/components
- name: Build Common
run: npm run build -w @busmap/common
- name: Build API
run: npm run build -w api
- name: Build UI
run: npm run build -w ui