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
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |