From 6dd44cbeda0d5be097032bd4bf8d5a48780a0af8 Mon Sep 17 00:00:00 2001 From: Nick Reilingh Date: Tue, 26 Nov 2024 16:25:16 -0500 Subject: [PATCH] Docs: cli/test.md - Completed GH Actions example (#15412) --- docs/cli/test.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/cli/test.md b/docs/cli/test.md index 29912ba2f5d283..e1b37f229b44f1 100644 --- a/docs/cli/test.md +++ b/docs/cli/test.md @@ -75,8 +75,10 @@ jobs: name: build-app runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v4 - name: Install bun - uses: oven-sh/setup-bun + uses: oven-sh/setup-bun@v2 - name: Install dependencies # (assuming your project has dependencies) run: bun install # You can use npm/yarn/pnpm instead if you prefer - name: Run tests