Skip to content

0.3.2

0.3.2 #35

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "npm"
- run: yarn
# We need to build for linting due to `import` checks in `__tests__` files
- run: yarn build
- run: yarn lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- run: yarn
- run: yarn build
- name: "Test"
run: yarn test
- name: "Test with GraphQL 15"
run: yarn add graphql@15.x && yarn test
- name: "Test with GraphQL 17"
run: yarn add graphql@^17.0.0-alpha.3 && yarn test