Skip to content

Commit 89c8b2b

Browse files
committed
Add node steps to gen step
1 parent 64e3102 commit 89c8b2b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/coder.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,21 @@ jobs:
7676
runs-on: ubuntu-latest
7777
steps:
7878
- uses: actions/checkout@v3
79+
80+
- name: Cache Node
81+
id: cache-node
82+
uses: actions/cache@v3
83+
with:
84+
path: |
85+
**/node_modules
86+
.eslintcache
87+
key: js-${{ runner.os }}-test-${{ hashFiles('**/yarn.lock') }}
88+
restore-keys: |
89+
js-${{ runner.os }}-
90+
91+
- name: Install node_modules
92+
run: ./scripts/yarn_install.sh
93+
7994
- name: Install Protoc
8095
uses: arduino/setup-protoc@v1
8196
with:

0 commit comments

Comments
 (0)