From 7b39866ad900a7634c4889a29d6cd8e064c7c186 Mon Sep 17 00:00:00 2001 From: Thada Wangthammang Date: Mon, 6 May 2024 00:48:21 +0700 Subject: [PATCH] fix: pnpm lockfile --- .github/workflows/e2e.yml | 9 ++++++--- pnpm-lock.yaml | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index ca51a80..b28873d 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -21,6 +21,8 @@ jobs: matrix: ${{ steps.deploy-matrix.outputs.matrix }} steps: - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v1 + - name: Use Node.js ${{ env.node_version }} uses: actions/setup-node@v4 with: @@ -33,13 +35,14 @@ jobs: - run: pnpm install - name: Export the matrix for testing id: deploy-matrix - run: nx run @infra/azure-functions:github-actions + run: pnpm exec nx run @infra/azure-functions:github-actions build: runs-on: ${{ matrix.os }} needs: get-matrix strategy: - matrix: ${{fromJson(needs.get-matrix.outputs.matrix)}} + matrix: + include: ${{fromJson(needs.get-matrix.outputs.matrix)}} steps: - uses: actions/checkout@v4 @@ -61,4 +64,4 @@ jobs: - run: pnpm build - name: Build the project - run: nx run @examples/with-${{ matrix.runtime }}:build + run: pnpm exec nx run @examples/with-${{ matrix.runtime }}:build diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ea4bbc6..2f8adcc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -82,7 +82,7 @@ importers: specifier: ^5.4.5 version: 5.4.5 - examples/with-nodejs: + examples/with-node: dependencies: '@hono/node-server': specifier: ^1.8.1