From 1c0760fbaa99c05a25d97c442f934d43c1c27dd5 Mon Sep 17 00:00:00 2001 From: Patrick Nwakwoke Date: Sun, 5 Mar 2023 22:48:46 +0100 Subject: [PATCH] chore: use node 16 and npm install for publishing --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index e48de3d..8d429fe 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -44,11 +44,11 @@ jobs: - uses: actions/setup-node@v3 with: - node-version: '14.x' + node-version: '16.x' registry-url: 'https://registry.npmjs.org' - name: Install deps - run: npm ci + run: npm install - name: Build project run: npm run build