From 8566f5315fe1409495bfe33995fb974cdb4fa243 Mon Sep 17 00:00:00 2001 From: Dan Oved Date: Fri, 10 Nov 2023 07:27:13 -0800 Subject: [PATCH] added back build-js task --- .github/workflows/js.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/js.yml diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml new file mode 100644 index 000000000..911ff8157 --- /dev/null +++ b/.github/workflows/js.yml @@ -0,0 +1,25 @@ +name: JS + +on: + push: + branches: + - main + +concurrency: ${{ github.workflow }}-${{ github.ref }} + +jobs: + build_js: + strategy: + fail-fast: true + + name: Build js package + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Install node deps and founry + uses: ./.github/actions/setup_deps + + - name: Build js package + run: | + npx turbo run build