Skip to content

chore(deps-dev): bump @types/lodash from 4.14.195 to 4.14.196 #593

chore(deps-dev): bump @types/lodash from 4.14.195 to 4.14.196

chore(deps-dev): bump @types/lodash from 4.14.195 to 4.14.196 #593

Workflow file for this run

name: Test successful build
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v2
- name: Setup Node.js 18
uses: actions/setup-node@v1
with:
node-version: 18
- name: Cache Node.js modules 💾
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Run typecheck, lint and tests 🧪
run: npm run check
- name: Build artifacts 🏗️
run: npm run build