feat: generate typescript types from codersdk structs (#1047)

This commit is contained in:
Garrett Delfosse
2022-04-18 19:45:22 -05:00
committed by GitHub
parent 1df943e010
commit f46b4cf3da
5 changed files with 442 additions and 1 deletions
+15
View File
@@ -76,6 +76,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Node
id: cache-node
uses: actions/cache@v3
with:
path: |
**/node_modules
.eslintcache
key: js-${{ runner.os }}-test-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
js-${{ runner.os }}-
- name: Install node_modules
run: ./scripts/yarn_install.sh
- name: Install Protoc
uses: arduino/setup-protoc@v1
with: