Skip to content

chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /examples/with-nestjs #1192

chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /examples/with-nestjs

chore(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /examples/with-nestjs #1192

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
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]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install deps
run: yarn install --frozen-lockfile --silent
env:
CI: true
- name: Lint
run: yarn lint
- name: Build
run: yarn build
env:
CI: true
- name: Test
run: yarn test
env:
CI: true