ci: setup v2 CI #1
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: Main-V2 | |
| on: | |
| push: | |
| branches: [v2] | |
| pull_request: | |
| branches: [v2] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| timeout-minutes: 8 | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install root dependencies | |
| uses: bahmutov/npm-install@v1 | |
| - name: Install core libs | |
| run: sudo apt-get install --yes curl bc | |
| - name: Run lint + type check | |
| run: make ci-lint | |
| unit: | |
| timeout-minutes: 8 | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Install root dependencies | |
| uses: bahmutov/npm-install@v1 | |
| - name: Run unit tests | |
| run: make ci-unit | |
| # TEMPORARILY DISABLED | |
| integration: | |
| if: false | |
| timeout-minutes: 8 | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Expose GitHub Runtime | |
| uses: crazy-max/ghaction-github-runtime@v2 | |
| - name: Build images | |
| run: | | |
| docker buildx create --use --driver=docker-container | |
| docker buildx bake -f ./docker-compose.ci.yml --set *.cache-to="type=gha" --set *.cache-from="type=gha" --load | |
| - name: Run integration tests | |
| run: make ci-int |