diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 185e629..db846f3 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,5 +1,5 @@ # Simple workflow for deploying static content to GitHub Pages -name: Deploy static content to Pages +name: Deploy to GitHub Pages on: # Runs on pushes targeting the default branch @@ -29,13 +29,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Set up Node.js - uses: actions/setup-node@v3 - with: - node-version: 16.x - cache: yarn + # - name: Set up Node.js + # uses: actions/setup-node@v3 + # with: + # node-version: 16.x + # cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile --non-interactive + run: npm ci - name: Build run: yarn build - name: Setup Pages