chore(deps): bump bn.js from 4.12.0 to 4.12.1 #327
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: integration tests (Kintsugi) | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.ref }}_kintsugi | |
| cancel-in-progress: true | |
| # NOTE: instant-seal is only compatible with the testnet-kintsugi runtime | |
| # SEE: https://github.com/interlay/interbtc/issues/955 | |
| # TODO: run tests using testnet-interlay runtime | |
| jobs: | |
| test: | |
| runs-on: [self-hosted, linux] | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - run: corepack enable | |
| - run: yarn install | |
| - name: Check versions | |
| run: | | |
| yarn --version | |
| npx node --version | |
| npx ts-node --version | |
| - name: Run required services | |
| run: docker-compose up --detach | |
| - run: yarn ci:test | |
| - name: Archive Docker logs | |
| if: always() | |
| run: docker-compose logs > logs.txt | |
| - name: Upload logs | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: docker-compose-logs | |
| path: logs.txt |