Skip to content

run workflow on all PR #89

run workflow on all PR

run workflow on all PR #89

Workflow file for this run

name: Build and test
on:
push:
branches: [master, devel]
pull_request

Check failure on line 6 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yaml

Invalid workflow file

You have an error in your yaml syntax on line 6
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Update deps
run: sudo apt-get update
- name: Install ImageMagick
run: sudo apt-get -y install graphicsmagick
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v3
with:
node-version: '16'
- run: npm ci
- run: make
- run: make lint
- run: make test
- run: make coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}