Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #19

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #19

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Restore cache
id: restore-cache
uses: actions/cache@v2
with:
path: node_modules
key: modules-${{ hashFiles('**/package-lock.json') }}
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Install dependencies
if: steps.restore-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Lint
run: npm run test:lint