chore: move users.authenticate_token
and users.fetch
to *_internal
#98
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 Modules | |
on: | |
- push | |
env: | |
OPENGB_REF: "a15d4191665738f20d5761ab46f4c649f9150289" | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout opengb-modules | |
uses: actions/checkout@v4 | |
with: | |
path: opengb-modules | |
- name: Checkout opengb | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.OPENGB_REF }} | |
repository: rivet-gg/opengb | |
path: opengb | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: "1.44.1" | |
- name: Install OpenGB | |
run: cd opengb/ && deno task cli:install | |
- name: Test Modules | |
run: cd opengb-modules/tests/basic && opengb test --strict-schemas --force-deploy-migrations | |