Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 #131

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5

build(deps-dev): bump word-wrap from 1.2.3 to 1.2.5 #131

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- name: Configure git credentials
run: git config --global user.name "GitHub Actions" && git config --global user.email "actions@users.noreply.github.com"
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "13.3"
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test