Skip to content

chore(deps): bump @apollo/client from 3.7.11 to 3.11.2 #1624

chore(deps): bump @apollo/client from 3.7.11 to 3.11.2

chore(deps): bump @apollo/client from 3.7.11 to 3.11.2 #1624

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version: [10.x, 12.x, 13.x, 14.x]
fail-fast: true
name: Run Unit tests
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
- run: npm run test:cover
- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
# this is because this codacy-coverage-reporter-action does not currently support macos
if: matrix.os == 'ubuntu-latest'
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/clover.xml