diff --git a/.github/workflows/website-deploy-test.yml b/.github/workflows/website-deploy-test.yml index 5e572f9..620e36a 100644 --- a/.github/workflows/website-deploy-test.yml +++ b/.github/workflows/website-deploy-test.yml @@ -17,6 +17,10 @@ jobs: cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + cd website + yarn install --frozen-lockfile - name: Test build website - run: yarn build \ No newline at end of file + run: | + cd website + yarn build \ No newline at end of file diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 9666fc6..046c783 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -19,9 +19,13 @@ jobs: cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + cd website + yarn install --frozen-lockfile - name: Build website - run: yarn build + run: | + cd website + yarn build # Popular action to deploy to GitHub Pages: # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus