Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #35

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #35

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '2.x'
architecture: 'x64'
- name: Install virtualenv
run: |
pip install virtualenv
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
./scripts/test.sh
env:
CI: true