Skip to content

chore(deps): update dependency graphql to v16.8.1 [security] #2645

chore(deps): update dependency graphql to v16.8.1 [security]

chore(deps): update dependency graphql to v16.8.1 [security] #2645

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
pull_request:
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 17.x, 18.x, 19.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/action-setup@v2.4.0
with:
run_install: false
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm install
- name: Lint
run: pnpm lint
- name: Spell check
uses: streetsidesoftware/cspell-action@main
with:
files: '**/*.{md,ts}'
- name: Build
run: pnpm build
- name: Test
if: startsWith(matrix.node-version , '19') != true
run: pnpm test:ci
- name: Test (with coverage)
if: startsWith(matrix.node-version, '19')
run: pnpm test:ci:coverage