Merge branch 'main' of https://github.com/solana-developers/professio… #20
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 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 | |
- name: Add WHY_DOES_PATH_NOT_WORK directory to PATH | |
run: | | |
echo "~/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH | |
- name: Check path | |
run: | | |
echo $PATH |