From d6f0f69af43d91fe380a5347348c274c27b6f1a5 Mon Sep 17 00:00:00 2001
From: Claudia Meadows <contact@claudiameadows.dev>
Date: Sun, 25 Aug 2024 13:53:44 -0700
Subject: [PATCH] Update test.yml

---
 .github/workflows/test.yml | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 5022223f0..49896af08 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -16,17 +16,15 @@ jobs:
     continue-on-error: true
     runs-on: ubuntu-latest
     steps:
+    - uses: actions/checkout@v4
     - uses: ./.github/actions/setup
-      with:
-        branch: next
     - run: npm run lint:docs
 
   lint-js:
     runs-on: ubuntu-latest
     steps:
+    - uses: actions/checkout@v4
     - uses: ./.github/actions/setup
-      with:
-        branch: next
     - run: npm run lint:js
 
   test-js:
@@ -41,9 +39,9 @@ jobs:
         - 20
         - 22
     steps:
+    - uses: actions/checkout@v4
     - uses: ./.github/actions/setup
       with:
-        branch: next
         node-version: ${{ matrix.node-version }}
     - run: npm run build
     - run: npm run test:js