Feat/cypress git action #9
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: Cypress Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
cypress: | |
name: Cypress | |
runs-on: ubuntu-latest | |
steps: | |
- name: Enable docker.host.internal for Ubuntu | |
run: | | |
pwd && sudo bash -c 'echo "172.17.0.1 host.docker.internal" >> /etc/hosts' | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setuo Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Clone Stack | |
run: | | |
git clone https://github.com/stakwork/sphinx-stack.git stack | |
- name: Give Permissions to Sphinx Tribes Frontend | |
run: chmod 777 -R cypress | |
- name: Give Permissions to Stack | |
working-directory: ./stack | |
run: | | |
chmod 777 ./bitcoind; | |
chmod 777 -R ./relay; | |
chmod 777 -R ./lnd; | |
chmod 777 -R ./proxy; | |
chmod 777 -R ./cln; | |
- name: Check for NODES | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: | | |
GITACTION_ENV=gitactionenv docker-compose -f ./stack/alts/proxy.yml --project-dir ./stack up -d; | |
sleep 240; | |
docker ps | |
docker logs meme.sphinx | |
docker logs dave.sphinx | |
docker wait stack_relaysetup_1 | |
cat stack/relay/NODES.json; | |
- name: Copy Node.json | |
uses: canastro/copy-file-action@master | |
with: | |
source: 'stack/relay/NODES.json' | |
target: 'cypress/fixtures/nodes.json' | |
- name: Install Frontend Dependencies | |
run: npm install | |
- name: Start Server | |
run: npm start | |
- name: Run Cypress Test | |
run: npm run cypress:run | |
- name: Stop Stack | |
working-directory: ./stack | |
run: docker-compose down |