Skip to content

Commit

Permalink
fix: pnpm lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed May 5, 2024
1 parent 258f9a9 commit 7b39866
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7b39866

Please sign in to comment.