Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #1027

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #1027

Workflow file for this run

name: Build
on: [push]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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: install, build, and test
run: |
yarn install
yarn run build --if-present
yarn test
env:
CI: true
coverage:
name: "Coverage"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: install and coverage
run: |
yarn install
yarn test --coverage
env:
CI: true
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
file: coverage/lcov.info