Files
adyen-web/.github/workflows/coveralls.yml
renovate[bot] 6e6add0167 chore(deps): update actions/checkout action to v4 (#2449)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-11-21 15:51:37 +01:00

36 lines
763 B
YAML

on: ["pull_request"]
name: Coveralls
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.15
- name: install, coverage
run: |
yarn --frozen-lockfile
yarn test:coverage
env:
CI: true
- name: Coveralls Parallel
uses: coverallsapp/github-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./packages/lib/coverage/lcov.info
- name: Coveralls Finished
uses: coverallsapp/github-action@main
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./packages/lib/coverage/lcov.info