Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored May 10, 2024
1 parent d545de2 commit c81f485
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ jobs:
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Cache Dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ github.run_id }}-node-modules
restore-keys: ${{ runner.os }}-node-modules


- name: Install the packages
run: yarn install --frozen-lockfile --ignore-engines

Expand Down Expand Up @@ -54,6 +62,13 @@ jobs:
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: Cache Dependencies
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-${{ github.run_id }}-node-modules
restore-keys: ${{ runner.os }}-node-modules

- name: Install the packages
run: yarn install --frozen-lockfile --ignore-engines

Expand Down

0 comments on commit c81f485

Please sign in to comment.