From 933d25a2b160783c0212ef0e7a07c550b139f8d5 Mon Sep 17 00:00:00 2001 From: Paul Chavard Date: Tue, 7 Nov 2023 20:14:09 +0100 Subject: [PATCH] build cli --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..fa944eb --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build CLI + +on: [push] + +jobs: + build_and_test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v1 + - run: bun install + - run: bun run compile + - name: Archive production artifacts + uses: actions/upload-artifact@v3 + with: + name: ds-api-client-linux + path: ds-api-client