This repository has been archived by the owner on Feb 11, 2024. It is now read-only.
Update LICENSE #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage Report | |
on: | |
# push trigger required to get coveralls monitoring of default branch | |
# pull_request required to get PR comments | |
pull_request: | |
paths-ignore: ['**/*md', '**/*yaml', '**/*yml'] | |
push: | |
branches: [main] | |
paths-ignore: ['**/*md', '**/*yaml', '**/*yml'] | |
jobs: | |
coveralls: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
id: pnpm-install | |
with: | |
version: 7 | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-pnpm-store- | |
- name: Install | |
run: pnpm i --ignore-scripts --reporter=silent | |
- name: Test | |
env: | |
DUNE_PASSWORD: ${{ secrets.DUNE_PASSWORD }} | |
DUNE_USERNAME: r1oga | |
run: pnpm run nps t.ci | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./test/coverage/lcov.info |