Skip to content

Bump body-parser and express #212

Bump body-parser and express

Bump body-parser and express #212

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Ubuntu
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ubuntu:
strategy:
matrix:
node-version: [16.x, 18.x]
runs-on: ubuntu-latest
env:
NODE_ENV: test
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install imagemagick
run: sudo apt-get install imagemagick
- run: npm ci
- run: npm run test:ubuntu