From 045b088cb4fe0831d3098e09101d16fefeae490a Mon Sep 17 00:00:00 2001 From: Noortheen Raja Date: Sat, 11 Jan 2025 13:42:34 +0530 Subject: [PATCH] ci: update actions --- .github/workflows/ci.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 85ee8f3..6b6019c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,10 +25,10 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: yarn - - run: yarn install --frozen-lockfile - - run: yarn lint - - run: yarn build + cache: npm + - run: npm install --frozen-lockfile + - run: npm run lint + - run: npm run build # publish the extension to marketplaces publish: @@ -41,10 +41,10 @@ jobs: - uses: actions/setup-node@v4 with: node-version: current - cache: yarn - - run: yarn install --frozen-lockfile - - run: yarn build - - run: yarn package + cache: npm + - run: npm install --frozen-lockfile + - run: npm run build + - run: npm run package - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/')