Skip to content

Commit

Permalink
Update check.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Kowalski committed Jun 13, 2024
1 parent d55bcba commit df28ef9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,19 @@ jobs:
node-version: "14.x"
registry-url: "https://registry.npmjs.org"

- name: Install Yarn
run: npm install -g yarn@3.6.3

- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
path: |
~/.yarn
.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --frozen-lockfile

Expand Down

0 comments on commit df28ef9

Please sign in to comment.