From a91778e51f995f775d96b63f178e38b0c2e35b8e Mon Sep 17 00:00:00 2001 From: ceddybi Date: Tue, 8 Oct 2024 12:36:21 -0400 Subject: [PATCH] fix(node): use node 18, use npm --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ce18802..7f8da7b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,14 +20,14 @@ jobs: - name: "Setup Node.js" uses: "actions/setup-node@v1" with: - node-version: 16 + node-version: 18 # Install packages with yarn - name: "Install" - run: yarn + run: npm i - name: "Build" - run: yarn build + run: npm run build # Automated Version Bump - name: "Automated Version Bump"