Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #46

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #46

Workflow file for this run

name: Lint
on: push
jobs:
code-lint:
name: Run linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- run: npm run build --if-present
- run: npm test
- name: Lint
run: npm run lint