Skip to content

update contributors #372

update contributors

update contributors #372

Workflow file for this run

name: Build and test
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update
run: sudo apt-get update
- name: Install ImageMagick
run: sudo apt-get -y install graphicsmagick
- name: checkout
uses: actions/checkout@v2
- name: setup node
uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm install
- run: make
- run: make lint
- run: make skipped_tests
- run: make test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}