mirror of
https://github.com/jlengrand/adyen-web.git
synced 2026-03-10 08:01:22 +00:00
36 lines
763 B
YAML
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
|