Skip to content

Commit

Permalink
caches node and bootstrap (python)
Browse files Browse the repository at this point in the history
  • Loading branch information
san7890 committed Sep 13, 2023
1 parent 2340fc0 commit a123f08
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a123f08

Please sign in to comment.