Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 in /example (#137) #122

Bump word-wrap from 1.2.3 to 1.2.4 in /example (#137)

Bump word-wrap from 1.2.3 to 1.2.4 in /example (#137) #122

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Begin CI...
uses: actions/checkout@v3
- name: Use Node 14
uses: actions/setup-node@v3
with:
node-version: 14.x
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
env:
CI: true
- name: Lint
run: yarn lint
env:
CI: true
- name: Test
run: yarn test --ci --coverage --maxWorkers=2
env:
CI: true
- name: Build
run: yarn build
env:
CI: true