diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index dca4c82..d259b1f 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -39,14 +39,13 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v3 with: - node-version: 16.x - cache: yarn + node-version: 18 # Use Node.js 18 here - name: Install dependencies - run: yarn install --frozen-lockfile --non-interactive + run: npm install - - name: Build - run: yarn build + - name: Build site + run: npm run build - name: Setup Pages uses: actions/configure-pages@v5