1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-18 21:17:59 +00:00

Cache dependencies in CI job

This commit is contained in:
Romein van Buren 2023-05-30 21:51:55 +02:00
parent 5a76bce3bb
commit f284040790
Signed by: romein
GPG Key ID: 0EFF8478ADDF6C49

View File

@ -27,6 +27,7 @@ jobs:
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: go.sum
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
@ -35,6 +36,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Install frontend dependencies
run: cd frontend && npm ci && cd ..