Adding protoc to CI

This commit is contained in:
David Négrier 2020-09-18 18:01:36 +02:00
parent d2a5060ad2
commit 5c63573ef1

View file

@ -20,7 +20,12 @@ jobs:
- name: "Setup NodeJS" - name: "Setup NodeJS"
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: '12.x' node-version: '14.x'
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: "Install dependencies" - name: "Install dependencies"
run: yarn install run: yarn install
@ -62,6 +67,11 @@ jobs:
with: with:
node-version: '12.x' node-version: '12.x'
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
- name: "Install dependencies" - name: "Install dependencies"
run: yarn install run: yarn install
working-directory: "back" working-directory: "back"