Skip to content

Update dependencies and improve logging #18

Update dependencies and improve logging

Update dependencies and improve logging #18

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: bufbuild/buf-setup-action@v1
with:
version: '1.4.0'
- uses: bufbuild/buf-lint-action@v1
# - uses: bufbuild/buf-breaking-action@v1
# with:
# # The 'main' branch of the GitHub repository that defines the module.
# against: 'https://github.com/${GITHUB_REPOSITORY}.git#branch=main'
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci
- run: npm run lint