Skip to content

Update default "config.default.js" to work out of the box #521

Update default "config.default.js" to work out of the box

Update default "config.default.js" to work out of the box #521

Workflow file for this run

name: build
on:
workflow_dispatch:
pull_request:
paths-ignore:
- '.github/**'
- 'docs/**'
- 'LICENSE'
- '**/*.md'
- 'Dockerfile'
- 'entrypoint.sh'
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 6
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
# Enable conversion to PDF
- run: sudo sed -i 's/policy domain="coder" rights="none" pattern="PDF"/policy domain="coder" rights="read | write" pattern="PDF"'/ /etc/ImageMagick-6/policy.xml
# Install packages and build
- run: npm clean-install .
- run: npm run lint
- run: npm run test
- run: npm run build
- run: ./makedeb.sh