Merge pull request #455 from dappnode/pablo/bump-dappnode-deps-types0… #900
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: Test GA tests end to end | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| ENVIRONMENT: TEST | |
| jobs: | |
| test: | |
| # to be run on self-hosted runner | |
| runs-on: packages | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js 20.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - run: yarn install | |
| - run: yarn build | |
| # Simulate Github Actions run on an actual DAppNode package | |
| - name: Setup a mock package to test locally | |
| run: node dist/dappnodesdk.js init --yes --force | |
| # Run end to end tests | |
| - name: Run end to end tests | |
| run: node dist/dappnodesdk.js github-action test-end-to-end --errorLogsTimeout 30 --network prater |