From 86d3ac814fb8ede899152ceadee2b46dd619f7e7 Mon Sep 17 00:00:00 2001 From: Pascal Jufer Date: Wed, 27 Oct 2021 13:28:55 +0200 Subject: [PATCH] Fix check-dist workflow not actually rebuilding The workflow was missing the `npm run package` step. Without this the check will always succeed as the /dist folder won't be updated. --- .github/workflows/check-dist.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index dd4ad75..e065502 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -32,7 +32,9 @@ jobs: run: npm ci - name: Rebuild the dist/ directory - run: npm run build + run: | + npm run build + npm run package - name: Compare the expected and actual dist/ directories run: |