From 70cf7f813d0b1e662ea16131c652148769e6e24b Mon Sep 17 00:00:00 2001 From: Jane Chu <7559015+janechu@users.noreply.github.com> Date: Tue, 5 Mar 2024 11:48:50 -0800 Subject: [PATCH] Add missing 'run' from a workflow npm script (#225) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## 📖 Description This adds a missing 'run' from an attempt to run an npm script run on a workflow. ## ✅ Checklist ### General - [ ] I have added tests for my changes. - [ ] I have tested my changes. - [ ] I have updated the project documentation to reflect my changes. --- .github/workflows/ci-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-publish.yml b/.github/workflows/ci-publish.yml index 6338098..18c3fd6 100644 --- a/.github/workflows/ci-publish.yml +++ b/.github/workflows/ci-publish.yml @@ -52,7 +52,7 @@ jobs: run: npm run build --workspace=design-to-code --workspace=design-to-code-react - name: Check for the presence of changed files inside ./change - run: npm check + run: npm run check - name: Testing diffs run: npm run test:diff