From ed7706dc1f69950c47ad38c9c8b9ddd9bd9ee027 Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Wed, 28 Aug 2024 00:52:26 +0000 Subject: [PATCH] fix runner --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 7e1068f3..87d6aad4 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,10 +14,10 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 - - name: Use Node.js ${{ matrix.node }} + - name: Use Node.js ${{ matrix.version }} uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 with: - node-version: ${{ matrix.node }} + node-version: ${{ matrix.version }} - run: npm install - run: npm run build --if-present - run: npm test