add: getCustomErrorMessage() and tests, bump version, rename to just helpers #54
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
# From https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs#using-the-nodejs-starter-workflow | |
name: Node.js and Solana CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v3 | |
# Install Solana | |
# From https://docs.solana.com/cli/install-solana-cli-tools | |
- run: sh -c "$(curl -sSfL https://release.solana.com/stable/install)" | |
- name: Add to PATH | |
shell: bash | |
run: | | |
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
# Install everything | |
- run: npm ci | |
- name: Check Solana keygen is installed | |
run: which solana-keygen | |
# Run tests | |
- run: npm test |