Skip to content

Propagating "loginEnabled" config parameter. #449

Propagating "loginEnabled" config parameter.

Propagating "loginEnabled" config parameter. #449

Workflow file for this run

name: build
on: [push]
jobs:
build:
name: Build / Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: "14"
- uses: actions/cache@v3 # Source: https://gist.github.com/rupeshtiwari/44ebec690f2c01bf1df9b1d215a0e723
id: cache-nodemodules
env:
cache-name: cache-node-modules
with:
# caching node_modules
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- if: steps.cache-nodemodules.outputs.cache-hit != 'true'
run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
- run: npm run build-prod