chore(deps): update redis docker tag to v7.0.12 #967
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: PR testing | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
tools-version: [[6, 5.0], [7, 6.0]] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: nrwl/nx-set-shas@v3.0.2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2.2.4 | |
- name: Install node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Start Redis ${{ matrix.tools-version[0] }} | |
uses: supercharge/redis-github-action@1.5.0 | |
with: | |
redis-version: ${{ matrix.tools-version[0] }} | |
- name: Start MongoDB ${{ matrix.tools-version[1] }} | |
uses: supercharge/mongodb-github-action@v1.9.0 | |
with: | |
mongodb-version: ${{ matrix.tools-version[1] }} | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm exec nx affected --target=build --parallel | |
- name: Lint | |
run: pnpm exec nx affected --target=lint --parallel | |
- name: Test | |
run: pnpm exec nx affected --target=test --parallel --coverage | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 |