From 3f67fcb57378e4f5883e41f61851ed627137ba6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Mart=C3=ADn=20Agra?= Date: Thu, 16 Apr 2020 22:55:57 +0200 Subject: [PATCH 1/2] ci: add compile step to our workflow --- .github/workflows/nodejs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 33bb304..00bf4aa 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -55,6 +55,10 @@ jobs: if: env.SKIP_BUILD != 'true' && steps.yarn-cache.outputs.cache-hit != 'true' run: yarn + - name: Build + if: env.SKIP_BUILD != 'true' + run: yarn compile:check + - name: Lint if: env.SKIP_BUILD != 'true' run: yarn ci:lint From 61d56383bebd59fec97181ecc791514fc0ed4e29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Santiago=20Mart=C3=ADn=20Agra?= Date: Fri, 17 Apr 2020 22:59:19 +0200 Subject: [PATCH 2/2] Fix format for 'nodejs.yml' --- .github/workflows/nodejs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 00bf4aa..4c5586a 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -55,7 +55,7 @@ jobs: if: env.SKIP_BUILD != 'true' && steps.yarn-cache.outputs.cache-hit != 'true' run: yarn - - name: Build + - name: Build if: env.SKIP_BUILD != 'true' run: yarn compile:check