Add Recommended Priority Fee #210
Workflow file for this run
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: Upload test coverage to coveralls | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
# This should match the hostname of the endpoint used to record the pollyjs test | |
# This shouldn't be a valid endpoint URL, the auth token should be redacted | |
QUICKNODE_ENDPOINT_URL: ${{ secrets.QUICKNODE_ENDPOINT_URL }} | |
QUICKNODE_SOLANA_ENDPOINT_URL: ${{ secrets.QUICKNODE_SOLANA_ENDPOINT_URL }} | |
jobs: | |
libs-sdk: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Run Test Coverage | |
run: npx nx run libs-sdk:test-coverage | |
- run: ls packages/libs/sdk/coverage | |
- name: Coveralls GitHub Action | |
uses: coverallsapp/github-action@v1 | |
with: | |
path-to-lcov: packages/libs/sdk/coverage/lcov.info | |
flag-name: sdk |