Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Bump word-wrap from 1.2.3 to 1.2.4 #108

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #108

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14.x", "16.x"]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v2.1.0
name: Install pnpm
with:
version: 7
run_install: true
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test --ci --coverage --maxWorkers=2
- name: Build
run: pnpm run build