E2E Nightly #32
This file contains hidden or 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: E2E Nightly | |
| on: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Start Local Stellar Node | |
| run: docker-compose up -d | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| - name: Wait for RPC | |
| run: sleep 15 | |
| - name: Install & Run | |
| run: | | |
| npm install | |
| npm run test:e2e |