Skip to content

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 #19

chore(deps): bump word-wrap from 1.2.3 to 1.2.4

chore(deps): bump word-wrap from 1.2.3 to 1.2.4 #19

Workflow file for this run

name: Verify
# Trigger the workflow on all pull requests, and on push to specific branches
on:
push:
branches:
- master
pull_request:
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Install Node.js, NPM
if: ${{ steps.result.outputs.status != 'success' }}
uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: checkout
uses: actions/checkout@v2
- name: Install dependencies
run: yarn
- name: Build sources
run: yarn build
- name: Lint
run: yarn lint
- name: Tests
run: yarn test --verbose