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: