Skip to content

Commit

Permalink
feat: workflow cache
Browse files Browse the repository at this point in the history
  • Loading branch information
clement2026 committed Sep 4, 2024
1 parent 895bc2a commit 1feb060
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,25 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache-dependency-path: "**/go.sum"

- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
run_install: false

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- uses: actions/setup-go@v5
with:
go-version: '^1.23'
cache-dependency-path: "**/go.sum"

- name: Install Protoc
uses: arduino/setup-protoc@v3
Expand Down

0 comments on commit 1feb060

Please sign in to comment.