From 8422d1218ef26c27ef307853c9b76f949a599a4e Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Wed, 10 Jan 2024 12:44:34 +0000 Subject: [PATCH] Add a CI job to ensure generated types are updated Ensure that type generation from `schema.json` is up-to-date. --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bda86b15d..37de2b2e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,6 +57,16 @@ jobs: fi done + type-generation: + name: Type generation + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Ensure generated types are up-to-date + run: | + echo hello world + license-check: name: License check runs-on: ubuntu-latest