Inform which books have draft when viewing chapter with no draft (#2… #6495
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
# This workflow will do a clean install of node dependencies, do an Angular production build across different | |
# versions of node and OSes. | |
# See: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Angular Production Build | |
on: | |
push: | |
branches: [master, develop] | |
pull_request: | |
branches: [master, develop] | |
jobs: | |
build: | |
name: node ${{ matrix.node_version }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
node_version: ["18.20.2"] | |
npm_version: ["10.5.0"] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- name: Upgrade npm | |
run: npm install -g npm@${{ matrix.npm_version }} | |
- name: Build Realtime server dependencies for Angular | |
run: cd src/RealtimeServer && npm ci | |
- name: Angular Frontend Production Build | |
run: cd src/SIL.XForge.Scripture/ClientApp && npm ci && npm run build |