chore(deps): update dependency handlebars to v4.7.9 [security] #441
This file contains hidden or 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
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: {} | |
| jobs: | |
| compile: | |
| name: Compilation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: yarn | |
| - name: Install Prince | |
| run: | | |
| wget https://www.princexml.com/download/prince_15.3-1_ubuntu22.04_amd64.deb -O /tmp/prince.deb | |
| sudo apt install /tmp/prince.deb | |
| - name: install dependencies | |
| run: yarn install | |
| - name: prepare | |
| run: yarn prepare-book | |
| - name: compile | |
| run: yarn compile-book | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: Book | |
| path: dist/book.pdf |