Fix packaging... #144
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
name: fluentReports Renderer CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x,16.x,18.x] | |
steps: | |
- name: Checkout Startup | |
uses: actions/checkout@v2 | |
- name: Update APT files | |
run: sudo apt update | |
- name: Upgrade OS files | |
run: sudo apt upgrade -y | |
- name: Get Poppler | |
run: sudo apt install poppler-utils | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm test | |
- name: Upload Results | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
path: /home/runner/work/fluentreports/fluentreports/examples/Check/*.png |