chore: update submodules #776
Workflow file for this run
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: Docker Test Vectors | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| repository_dispatch: | |
| schedule: | |
| # 8:00 AM Europe/Warsaw (6:00 UTC, using UTC+2 summer time) | |
| - cron: '0 6 * * *' | |
| # 12:00 PM Europe/Warsaw (10:00 UTC) | |
| - cron: '0 10 * * *' | |
| # 4:00 PM Europe/Warsaw (14:00 UTC) | |
| - cron: '0 14 * * *' | |
| # 8:00 PM Europe/Warsaw (18:00 UTC) | |
| - cron: '0 18 * * *' | |
| # Midnight Europe/Warsaw (22:00 UTC previous day) | |
| - cron: '0 22 * * *' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| init: | |
| name: Initializing environment | |
| runs-on: [self-hosted, non-perf] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Fetch Typeberry Docker image | |
| run: npm run fetch-typeberry | |
| docker-test-vectors: | |
| needs: init | |
| name: Docker Test Vectors Test | |
| runs-on: [self-hosted, non-perf] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run Docker Test Vectors test | |
| run: | | |
| npm exec tsx --test tests/docker-test-vectors.test.ts |