General maintenance and npm package updates (please see mentioned details) #60
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: tests | |
'on': | |
push: | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
name: Node ${{ matrix.node }} | |
strategy: | |
matrix: | |
node: | |
- "18" | |
- "20" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-turbo-progs inkscape gifsicle | |
- run: npm install | |
- run: npm test | |
test-targets: | |
runs-on: ubuntu-20.04 | |
name: ${{ matrix.targets.name }} | |
strategy: | |
matrix: | |
targets: | |
- name: 'Lint' | |
target: 'lint' | |
- name: 'Coverage' | |
target: 'coverage' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-turbo-progs inkscape gifsicle | |
- run: npm install | |
- run: npm run ${{ matrix.targets.target }} | |
- name: Upload coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
if: ${{ matrix.targets.target == 'coverage' }} |