Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #369

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #369

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*'
pull_request: {}
jobs:
test:
name: Tests
runs-on: ubuntu-latest
env:
CI: 'true'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Compile TypeScript
run: yarn compile
- name: Lint JS
run: yarn lint:js
- name: Test
run: yarn test