Skip to content

coveralls

coveralls #105

Workflow file for this run

on: ["push", "pull_request"]
name: not-travis
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: yarn
lint:
runs-on: ubuntu-latest
needs: prepare
steps:
- run: ./node_modules/.bin/lerna run lint
test:
runs-on: ubuntu-latest
needs: prepare
strategy:
matrix:
package:
- signpdf
- utils
- placeholder-pdfkit010
- placeholder-plain
steps:
- run: ./node_modules/.bin/lerna run test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
parallel: true
flag-name: $
github-token: ${{ secrets.GITHUB_TOKEN }}
base-path: packages/$
finish:
needs: test
if: $

Check failure on line 41 in .github/workflows/not-travis.yml

View workflow run for this annotation

GitHub Actions / not-travis

Invalid workflow file

The workflow is not valid. .github/workflows/not-travis.yml (Line: 41, Col: 9): Unexpected symbol: '$'. Located at position 1 within expression: $
runs-on: ubuntu-latest
steps:
- name: Close Coveralls
uses: coverallsapp/github-action@master
with:
parallel-finished: true
carryforward: "signpdf,utils,placeholder-pdfkit010,placeholder-plain"