Skip to content
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.

Add .tool-versions

Add .tool-versions #58

Workflow file for this run

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/action-setup@v2.2.4
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