From 89773e7bddd7a21b55123c4bc981c5aaee301208 Mon Sep 17 00:00:00 2001 From: Brian Ball Date: Wed, 27 Dec 2023 14:03:16 -0500 Subject: [PATCH] Specifying node version --- .github/workflows/action-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/action-ci.yml b/.github/workflows/action-ci.yml index 665ae15..6823b72 100644 --- a/.github/workflows/action-ci.yml +++ b/.github/workflows/action-ci.yml @@ -23,10 +23,12 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - uses: actions/checkout@v2 + with: + node-version: latest - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: '21.5' + node-version: latest - run: npm ci - run: npm run test-ci - name: Report Coverage