From a0f8559ffcf8f7a5f7a5f2c0c494082f69ecf9bd Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Thu, 4 Dec 2025 16:02:29 +0100 Subject: [PATCH] :wrench: Add ci/cd for nitrate-module (#7905) --- .github/workflows/build-nitrate-module.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build-nitrate-module.yml diff --git a/.github/workflows/build-nitrate-module.yml b/.github/workflows/build-nitrate-module.yml new file mode 100644 index 0000000000..74be34bd93 --- /dev/null +++ b/.github/workflows/build-nitrate-module.yml @@ -0,0 +1,21 @@ +name: _NITRATE MODULE + +on: + schedule: + - cron: '36 5-20 * * 1-5' + +jobs: + build-bundle: + uses: ./.github/workflows/build-bundle.yml + secrets: inherit + with: + gh_ref: "nitrate-module" + build_wasm: "yes" + build_storybook: "yes" + + build-docker: + needs: build-bundle + uses: ./.github/workflows/build-docker.yml + secrets: inherit + with: + gh_ref: "nitrate-module"