Skip to content

chore(deps-dev): bump sqlite3 from 5.0.0 to 5.1.5 #64

chore(deps-dev): bump sqlite3 from 5.0.0 to 5.1.5

chore(deps-dev): bump sqlite3 from 5.0.0 to 5.1.5 #64

Workflow file for this run

name: CI
on:
push:
branches: [master]
paths:
- .github/workflows/main.yml
- packages/**/*.{js,ts,json}
- babel.config.js
- package.json
- pnpm-lock.yaml
- .eslintrc
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 10 # 2020-04-01
- 12
- latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/[email protected]
with:
version: 6.0.1
- name: Cache dependencies
uses: actions/cache@v2
env:
cache-name: ucast-deps
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('./pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm run -r build
- name: lint & test
run: |
pnpm run -r lint
pnpm run -r coverage
- name: submit coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: pnpm run coverage.submit