We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e573970 commit 2f207c4Copy full SHA for 2f207c4
1 file changed
.github/workflows/protos.yml
@@ -50,16 +50,22 @@ jobs:
50
51
echo "Successfully copied the proto directory to $TARGET_DIR."
52
53
+ - name: Install Node.js and Dependencies
54
+ uses: actions/setup-node@v3
55
+ with:
56
+ node-version: '18'
57
+
58
- name: Install Buf
59
run: |
60
# Download and install buf
61
wget https://github.com/bufbuild/buf/releases/download/v1.7.0/buf-Linux-x86_64 -O /usr/local/bin/buf
62
chmod +x /usr/local/bin/buf
63
buf --version
-
64
65
- name: Generate Code with Buf
66
67
# Navigate to the proto directory and run buf generate
68
+ npm install
69
buf generate
70
71
- name: Add and Commit Changes
0 commit comments