Skip to content

Bump protobufjs from 6.11.3 to 7.2.4 #844

Bump protobufjs from 6.11.3 to 7.2.4

Bump protobufjs from 6.11.3 to 7.2.4 #844

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: cache-deps
with:
path: node_modules
key: ${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}
- name: lint
run: |
npm install
npm run lint
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: 12
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: cache-deps
with:
path: node_modules
key: ${{ runner.os }}-node12-${{ hashFiles('**/package-lock.json') }}
- name: build
run: |
npm install
npm run build