From 5101299a0308315fdb0009f9d6f6e914bcfc925d Mon Sep 17 00:00:00 2001 From: William Putra Intan <61998484+williamputraintan@users.noreply.github.com> Date: Tue, 19 Sep 2023 13:01:31 +1000 Subject: [PATCH] Build step --- .github/workflows/prbuild.yml | 4 ++++ Makefile | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/prbuild.yml b/.github/workflows/prbuild.yml index 76e9a56e5..dce18bd34 100644 --- a/.github/workflows/prbuild.yml +++ b/.github/workflows/prbuild.yml @@ -87,6 +87,10 @@ jobs: run: | make install + - name: Build code + run: | + make build + - name: Lint and code formatting run: | make check diff --git a/Makefile b/Makefile index 670a0e711..9206b3813 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,9 @@ deep: scan baseline: @detect-secrets scan --exclude-files '^(yarn.lock|.yarn/|.local/|openapi/)' > .secrets.baseline +build: + @(cd lib/workload/stateless/metadata_manager/src && yarn edgetypes) + test: @yarn test @(cd lib/workload/stateless/sequence_run_manager/src && python manage.py test)