diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6dbf72784..0d53566fd9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,6 +20,12 @@ jobs: with: node-version: ${{ matrix.node-version }} + - name: Cache node_modules + uses: actions/cache@v2 + with: + path: '**/node_modules' + key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} + - run: make node_modules name: Install dependencies