Skip to content

Bump word-wrap from 1.2.3 to 1.2.5 in /ts #35

Bump word-wrap from 1.2.3 to 1.2.5 in /ts

Bump word-wrap from 1.2.3 to 1.2.5 in /ts #35

Workflow file for this run

name: Lint and test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typescript-build-and-test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node:
- 12
- 14
- 16
- 18
pnpm:
- 6
- 7 # latest
exclude:
- node: 12
pnpm: 7
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: ${{ matrix.pnpm }}
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: pnpm
cache-dependency-path: ts/pnpm-lock.yaml
- run: pnpm install --frozen-lockfile
working-directory: ./ts
- run: pnpm test
working-directory: ./ts
- run: pnpm lint
working-directory: ./ts
- run: pnpm format:check
working-directory: ./ts
- run: pnpm build:all
working-directory: ./ts