From 8c6fd659f3be21cc90c5da6f8f95608881ebbaa2 Mon Sep 17 00:00:00 2001 From: adueck Date: Sat, 8 Oct 2022 22:06:33 +0500 Subject: [PATCH] fix ci - but still dependency redundancies/structure is rough --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5e7d7c..a71d5b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,12 @@ jobs: - uses: actions/setup-node@v1 with: node-version: 12 - - run: yarn install - - run: yarn build-library - - run: yarn test \ No newline at end of file + run: | + yarn install + cd src/lib + yarn install + cd ../components + yarn install + cd ../.. + yarn build-library + yarn test \ No newline at end of file