Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 #17

Bump word-wrap from 1.2.3 to 1.2.4

Bump word-wrap from 1.2.3 to 1.2.4 #17

Workflow file for this run

name: Check code
env:
NODE_VERSION: 18
on:
push:
branches:
- master
paths-ignore:
- "**.md"
pull_request:
branches:
- master
paths-ignore:
- "**.md"
jobs:
check_code:
name: Run type checking, linting, and tests
runs-on: ubuntu-latest
steps:
- name: Check out to repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check TypeScript types
run: yarn test-compile
- name: Run ESLint
run: yarn lint
- name: Run Jest tests
run: yarn test