From 22bb048d2bee12381bdbe70bfa31bcc073a98b9c Mon Sep 17 00:00:00 2001 From: Matthias Date: Thu, 2 Dec 2021 11:26:35 +0100 Subject: [PATCH] try fixing jsavascript testing --- .github/workflows/javascript.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/javascript.yaml b/.github/workflows/javascript.yaml index a07b516ac6..c2ae1792ef 100644 --- a/.github/workflows/javascript.yaml +++ b/.github/workflows/javascript.yaml @@ -23,11 +23,14 @@ jobs: INVENTREE_MEDIA_ROOT: ./media INVENTREE_STATIC_ROOT: ./static steps: - - name: Install node.js - uses: actions/setup-node@v2 - - run: npm install - name: Checkout Code uses: actions/checkout@v2 + - name: Install node.js + uses: actions/setup-node@v2 + with: + node-version: '16' + cache: 'npm' + - run: npm install - name: Setup Python uses: actions/setup-python@v2 with: