Skip to content

fix(deps): update dependency @graphql-mesh/openapi to v0.108.21 #3584

fix(deps): update dependency @graphql-mesh/openapi to v0.108.21

fix(deps): update dependency @graphql-mesh/openapi to v0.108.21 #3584

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Test
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout Master
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node 14
uses: actions/setup-node@master
with:
node-version: 14
- name: Get Yarn cache
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Yarn cache
uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-14-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-14-yarn-
- name: Install dependencies with Yarn
run: yarn install --ignore-engines
- name: Build
run: yarn build
- name: Test
run: yarn test