12345678910111213141516171819202122 |
- name: metadata-protobuf
- on: [pull_request, push]
- jobs:
- schemas_checks:
- name: Checks
- runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [14.x]
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: test protobuf
- run: |
- yarn install --frozen-lockfile
- yarn workspace @joystream/metadata-protobuf build
- yarn workspace @joystream/metadata-protobuf checks --quiet
- yarn workspace @joystream/metadata-protobuf test
|