Skip to content

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

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

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

Workflow file for this run

name: Check build in production mode
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install the dependencies
run: pnpm install
- name: tsc and eslint check
run: pnpm run typecheck
- name: check code formatting
run: npx prettier --check .
- name: Build
run: pnpm run build