Skip to content

Commit

Permalink
Attempt to cache yarn dependencies in GitHub cache
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Dec 7, 2023
1 parent 20ee867 commit a5aab8b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/docker-vue3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ jobs:
-
name: Checkout
uses: actions/checkout@v4

# Run yarn install to store dependencies in the GitHub cache
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
cache: 'yarn'
- name: Install project dependencies
run: yarn

# Build docker image
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit a5aab8b

Please sign in to comment.