This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
feat: Return Material Authorization
support. (#200)
#140
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will run tests using node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
# This file was contributed by [email protected] from ERP Consultores y Asociados, C.A | |
name: Continuous Integration | |
on: | |
push: | |
branches: | |
- '*' # matches every branch that doesn't contain a '/' | |
- '*/*' # matches every branch containing a single '/' | |
- '**' # matches every branch | |
jobs: | |
build-app: | |
name: Generate Stub Files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Node configuration | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
cache: 'yarn' | |
- name: Install node dependencies | |
run: yarn ci # if a package.lock exists | |
- name: Generate proto stub | |
run: yarn stub | |
- name: Upload dist app | |
uses: actions/upload-artifact@v3 | |
with: | |
name: gRPC-API | |
path: ./ |