[release-4.17-compatibility] Bug 2311867: Prepare cluster for disaster recovery #4673
Workflow file for this run
This file contains 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: Build Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master, release*] | |
jobs: | |
build-test: | |
name: resolve-dependencies | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16, 18.17.1] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'yarn' | |
- run: yarn install --prod --frozen-lockfile | |
- run: yarn build | |
- run: yarn build-mco | |
- run: yarn install # Install dev. deps. | |
- run: yarn lint | |
- run: yarn format-test | |
- run: yarn i18n-test | |
- run: yarn test-coverage | |
- run: yarn analyze-odf | |
- run: yarn analyze-mco |