From 7ed45d3962f1556e2a6243da5a60a449cb97031b Mon Sep 17 00:00:00 2001 From: "Dominykas M." <26067386+Tasty-Kiwi@users.noreply.github.com> Date: Wed, 20 Mar 2024 18:08:10 +0200 Subject: [PATCH] replace yarn with npm --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/test-deploy.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4deed35..adcd137 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,12 +21,12 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - cache: yarn + cache: npm - name: Install dependencies - run: yarn install --frozen-lockfile + run: npm install - name: Build website - run: yarn build + run: npm run build # Popular action to deploy to GitHub Pages: # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml index de5645b..241f560 100644 --- a/.github/workflows/test-deploy.yml +++ b/.github/workflows/test-deploy.yml @@ -18,9 +18,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - cache: yarn + cache: npm - name: Install dependencies - run: yarn install --frozen-lockfile + run: npm install - name: Test build website - run: yarn build + run: npm run build