From 3b9dc04c172b94271d5642023075c8f817b8ef55 Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sun, 10 Nov 2024 13:59:29 +0100 Subject: [PATCH] Update --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d068b70..7dde32c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -154,10 +154,10 @@ jobs: - name: Test Fastify Integration run: | - pnpm link && + npm link . && PACKAGE_NAME=$(node -p "require('./package.json').name") git clone https://github.com/fastify/fastify.git --depth 1 && cd fastify && - pnpm i --ignore-scripts && - pnpm link $PACKAGE_NAME && - pnpm run unit + npm i --ignore-scripts && + npm link $PACKAGE_NAME && + npm run unit