diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index b56b4b81d35ff..87a6e674540fe 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -36,6 +36,22 @@ jobs: restore-keys: | ${{ runner.os }}-build- ${{ runner.os }}- + - name: Restore Node cache + uses: actions/cache@v3 + with: + path: ~/.npm + key: ${{ runner.os }}-node-${{ hashFiles('tgui/package.json') }} + restore-keys: | + ${{ runner.os }}-build- + ${{ runner.os }}- + - name: Restore Bootstrap cache + uses: actions/cache@v3 + with: + path: tools/bootstrap/.cache + key: ${{ runner.os }}-bootstrap-${{ hashFiles('tools/requirements.txt') }} + restore-keys: | + ${{ runner.os }}-build- + ${{ runner.os }}- - name: Restore Rust cache uses: actions/cache@v3 with: