Add esm build and support for deferred schema to prevent import order errors #13
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: Pull request | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
jobs: | |
pr-check: | |
name: PR check for graph-serializer | |
runs-on: ubuntu-latest | |
if: github.repository == 'ScientaNL/graph-serializer' | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- run: yarn | |
- run: yarn test | |