Skip to content

chore(deps): bump word-wrap from 1.2.3 to 1.2.5 #234

chore(deps): bump word-wrap from 1.2.3 to 1.2.5

chore(deps): bump word-wrap from 1.2.3 to 1.2.5 #234

Workflow file for this run

# Workflow name
name: ESLint & TSC
# Event for the workflow
on: [pull_request]
# List of jobs
jobs:
eslint-tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Use Node.js (.nvmrc)
uses: actions/setup-node@v3
with:
node-version: "${{ steps.nvm.outputs.NVMRC }}"
- name: Get Yarn cache directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Use Yarn cache
uses: actions/cache@v3.0.11
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile --prefer-offline
# `--prefer-offline` gives cache priority
- name: ESLint
run: yarn lint
- name: TSC
run: yarn type-check