Adding a very basic CI test that just installs the shell. #4
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: Run Bash Script on ci-test Branch | |
on: | |
push: | |
branches: | |
- ci-test | |
pull_request: | |
branches: | |
- ci-test | |
jobs: | |
run-bash-script: | |
runs-on: ubuntu-22.04 | |
env: | |
FORCE_JAVASCRIPT_ACTIONS_TO_NODE20: true # Set the environment variable for the entire job | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Run install script | |
run: | | |
chmod +x ./ci/01-install-shell-only.sh | |
./ci/01-install-shell-only.sh | |