refactor: replace both airdrop functions with one that always checks the existing balance #106
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 | |
# From https://docs.solana.com/cli/install-solana-cli-tools | |
- name: Install Solana | |
run: sh -c "$(curl -sSfL https://release.solana.com/stable/install)" | |
- name: Add to PATH | |
run: echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Run Solana validator (and background it) | |
run: solana-test-validator & | |
- name: Install everything | |
run: npm ci | |
- name: Check Solana keygen is installed | |
run: echo $PATH; which solana-keygen | |
- name: Run tests | |
run: npm test |