DFBUGS-9706: [release-4.22] Increase TNF minimum resource requirements to 12 CPU and 48 GiB #11270
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: Sanity Checks | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master, release*] | |
| types: [opened, synchronize, reopened, edited] | |
| jobs: | |
| sanity-checks: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.19.2, 22] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn install --immutable | |
| - run: yarn build | |
| - run: yarn build-mco | |
| - run: yarn build-client | |
| - run: yarn lint | |
| - run: yarn format-test | |
| - run: yarn i18n-test | |
| - run: yarn test-coverage | |
| - run: yarn analyze-odf | |
| - run: yarn analyze-mco | |
| - run: yarn analyze-client |