Skip to content

Preserve directives on fragments when merging AST #2203

Preserve directives on fragments when merging AST

Preserve directives on fragments when merging AST #2203

Workflow file for this run

name: Test PR
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
paths-ignore:
- '**.md'
- 'examples'
- '!examples/monaco-graphql-webpack'
jobs:
unit:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn install --frozen-lockfile --immutable
- name: Run Unit Tests
run: yarn test:ci --coverage
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage/lcov.info
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)