From ae43efb1fe77667f74f9a49a0f9ebafea8c59198 Mon Sep 17 00:00:00 2001 From: Sean Zellmer Date: Tue, 4 Aug 2026 13:17:45 -0500 Subject: [PATCH] Update `test-node` workflow with `holepunchto` actions --- .github/workflows/test-node.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test-node.yml b/.github/workflows/test-node.yml index 1d2dad7..8f2b424 100644 --- a/.github/workflows/test-node.yml +++ b/.github/workflows/test-node.yml @@ -10,9 +10,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - - run: npm install + - uses: holepunchto/actions/node-base@v1 - run: npm run lint test: strategy: @@ -21,10 +19,5 @@ jobs: os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 - with: - node-version: ${{ matrix.node-version }} - - run: npm install + - uses: holepunchto/actions/node-base@v1 - run: npm test