aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/node-tests.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/node-tests.yml b/.github/workflows/node-tests.yml
index fbb280873d8..f5bc2bab05a 100644
--- a/.github/workflows/node-tests.yml
+++ b/.github/workflows/node-tests.yml
@@ -28,7 +28,7 @@ jobs:
test:
runs-on: ubuntu-latest
needs: versions
-
+
steps:
- name: Checkout
uses: actions/checkout@v2
@@ -60,10 +60,8 @@ jobs:
with:
node-version: ${{ needs.versions.outputs.nodeVersion }}
- # This test requires npm6 for some reason
- # TODO: fix this and/or move away from jsunit
- - name: Set up npm 6
- run: npm i -g npm@^6
+ - name: Set up npm ${{ needs.versions.outputs.npmVersion }}
+ run: npm i -g npm@"${{ needs.versions.outputs.npmVersion }}"
- name: Test
run: ./autotest-js.sh
@@ -71,7 +69,7 @@ jobs:
handlebars:
runs-on: ubuntu-latest
needs: versions
-
+
steps:
- name: Checkout
uses: actions/checkout@v2