diff options
| author | XhmikosR <[email protected]> | 2021-07-19 18:38:49 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-19 18:38:49 +0300 |
| commit | 2721f6042bc8106e35c3db21f382fc968bfce931 (patch) | |
| tree | 0175994c3d68a2bf3d339d9daee412b6cd788cbc /.github/workflows/css.yml | |
| parent | dfafb9a60c5f15d341fc8992542aead014114058 (diff) | |
| download | bootstrap-2721f6042bc8106e35c3db21f382fc968bfce931.tar.xz bootstrap-2721f6042bc8106e35c3db21f382fc968bfce931.zip | |
CI: make use of the `actions/setup-node`'s `cache` option (#34453)
Diffstat (limited to '.github/workflows/css.yml')
| -rw-r--r-- | .github/workflows/css.yml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/css.yml b/.github/workflows/css.yml index 1f394c65e..48f11d459 100644 --- a/.github/workflows/css.yml +++ b/.github/workflows/css.yml @@ -22,14 +22,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci |
