From bbb314e4e5835d3b0a5f0505c4aa28c4ea12cd9f Mon Sep 17 00:00:00 2001 From: Alexis Hernandez Date: Wed, 10 Aug 2022 21:32:01 -0600 Subject: [PATCH] Prepare production build on the CI --- .github/workflows/pull_request.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e2cd12c..5b4fd7c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -30,5 +30,12 @@ jobs: #- name: Run tests # run: CI=true sbt test - #- name: Prepare production build - #run: npm install && npm run build + - name: Install js dependencies + run: npm ci + + - name: Scala to js + run: sbt fullLinkJS && sbt fullLinkOutputDir + + - name: Prepare production build + run: npm run build +