Skip to content

build(deps-dev): bump publib from 0.2.920 to 0.2.921 #3885

build(deps-dev): bump publib from 0.2.920 to 0.2.921

build(deps-dev): bump publib from 0.2.920 to 0.2.921 #3885

Workflow file for this run

name: ci cd
on:
push:
branches:
- main
pull_request:
jobs:
ci_cd:
runs-on: ubuntu-20.04
name: Continuous Integration/Continuous Deployment
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run package
- name: send coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}