Skip to content

fix: Add transform support for "ts" type queries and type references #20

fix: Add transform support for "ts" type queries and type references

fix: Add transform support for "ts" type queries and type references #20

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'node'
- name: Cache dependencies
uses: actions/cache@v2
with:
path: node_modules
key: yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
yarn-
- name: Install Packages
run: yarn install --frozen-lockfile
- name: Test
run: yarn run test
env:
CI: true