Skip to content

Commit

Permalink
Update testing1206.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gowridurgad authored Jan 28, 2025
1 parent 11c1633 commit a0d484f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/testing1206.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,18 @@ jobs:
node-version: ${{ env.node_version }}
cache: 'yarn'

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

- uses: actions/cache@v4
id: npm-cache
with:
path: node_modules
key: ${{ runner.os }}-${{ env.node_version }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-${{ env.node_version }}-node-


- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit a0d484f

Please sign in to comment.