fix(deps): update graphql-tools #1469
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
env: | |
NODE_NO_WARNINGS: true | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
CI: true | |
on: | |
pull_request: {} | |
jobs: | |
prettier-check: | |
name: prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v4 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Prettier Check | |
run: yarn prettier:check | |
lint: | |
name: lint | |
uses: the-guild-org/shared-config/.github/workflows/lint.yml@main | |
with: | |
script: yarn ci:lint | |
secrets: | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
unit: | |
name: unit | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Master | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Setup env | |
uses: the-guild-org/shared-config/setup@main | |
with: | |
nodeVersion: 18 | |
- name: Cache Jest | |
uses: actions/cache@v4 | |
with: | |
path: .cache/jest | |
key: ${{ runner.os }}-jest-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-jest- | |
- name: Test | |
run: yarn test --ci |