Skip to content

update to apollo 4 and sentry 8 and stuff #49

update to apollo 4 and sentry 8 and stuff

update to apollo 4 and sentry 8 and stuff #49

Workflow file for this run

name: QA
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 16
uses: actions/setup-node@v1
with:
node-version: 16
- run: npm ci --prefer-offline
- run: npm run codegen
- run: npm run lint
- run: npm run typecheck