Skip to content

Commit

Permalink
Fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
puckey committed Jan 31, 2024
1 parent bcd6b3b commit 467f920
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
name: Run test & lint
runs-on: Ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16.x'
- uses: actions/cache@v2
node-version: '18.x'
- uses: actions/cache@v4
id: yarn-cache
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
key: node18-${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
if: ${{ steps.yarn-cache.outputs.cache-hit != 'true' }}

Expand Down

0 comments on commit 467f920

Please sign in to comment.