Skip to content

Bump word-wrap from 1.2.3 to 1.2.4 (#1426) #1196

Bump word-wrap from 1.2.3 to 1.2.4 (#1426)

Bump word-wrap from 1.2.3 to 1.2.4 (#1426) #1196

Workflow file for this run

name: Tests and checks on push
on:
pull_request:
push:
branches:
- rewrite
jobs:
run-checks-and-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version-file: ".nvmrc"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Prettier
run: npm run prettier:check
- name: Lint TS
run: npm run lint:ts
- name: Stylelint
run: npm run lint:css
- name: Typecheck
run: npm run typecheck
- name: Check translations jsons
run: npm run check-translation-jsons:no-write