Skip to content

Commit

Permalink
feat: support extend keyword (#52)
Browse files Browse the repository at this point in the history
* feat: support extend keyword

* chore: set last nightly toolchain

* chore: use CI_TOKEN instead of PAT

* chore: add failing test

* chore: support multiple schema defs as long as only 1 is not extend

* chore: commit missing files
  • Loading branch information
gabotechs authored Oct 12, 2023
1 parent a835ede commit 251065e
Show file tree
Hide file tree
Showing 44 changed files with 833 additions and 505 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v3
with:
repository: gabotechs/node-graphqxl
token: ${{ secrets.PAT }}
token: ${{ secrets.CI_TOKEN }}
- run: |
VERSION="${GITHUB_REF_NAME:1}"
jq ".version=\"$VERSION\"" package.json > _package.json
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-10-09 # Fixed so that it can be cached
toolchain: nightly-2023-10-11 # Fixed so that it can be cached
profile: minimal
components: clippy
override: true
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-10-09 # Fixed so that it can be cached
toolchain: nightly-2023-10-11 # Fixed so that it can be cached
override: true
components: llvm-tools-preview

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Install toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2022-10-09 # Fixed so that it can be cached
toolchain: nightly-2023-10-11 # Fixed so that it can be cached
profile: minimal

- name: Cache
Expand Down
Loading

0 comments on commit 251065e

Please sign in to comment.