Skip to content

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

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

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

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14, 16 ]
eslint: [ 7, '' ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Install eslint (optional)
if: ${{ matrix.eslint }} != ''
run: npm i -D eslint@${{ matrix.eslint }}
- name: Build
run: npm run all