Skip to content

build(deps): bump word-wrap from 1.2.3 to 1.2.4 #516

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

build(deps): bump word-wrap from 1.2.3 to 1.2.4 #516

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.8.0]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Unit tests
run: yarn test:unit
- name: Build
run: yarn build
- name: Node.js tests
run: yarn test:integration:node
- name: Browser tests
run: yarn test:integration:browser