Skip to content

Commit

Permalink
chore(github-actions): Use setup-node action to cache dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jongwooo authored and Daniel15 committed Feb 14, 2023
1 parent be215a6 commit 8bd90ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run test
Expand Down

0 comments on commit 8bd90ae

Please sign in to comment.