From c5ea9641e365edaf84ce07dbd05b44a5f50168b9 Mon Sep 17 00:00:00 2001 From: Mohammad Iskandarany <43501040+M7mdisk@users.noreply.github.com> Date: Wed, 12 Jun 2024 17:02:06 +0300 Subject: [PATCH] CI: fix release Github action (#128) --- .github/workflows/publish-on-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-on-release.yml b/.github/workflows/publish-on-release.yml index dd33c98..43b013c 100644 --- a/.github/workflows/publish-on-release.yml +++ b/.github/workflows/publish-on-release.yml @@ -12,9 +12,9 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 14 + node-version: 18 registry-url: https://registry.npmjs.org/ - - run: yarn install + - run: corepack enable && yarn install - run: yarn build - run: yarn lint - run: yarn test