Skip to content

Bump @types/lodash from 4.14.178 to 4.17.9 #1418

Bump @types/lodash from 4.14.178 to 4.17.9

Bump @types/lodash from 4.14.178 to 4.17.9 #1418

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Lint, Tests & Coverage Check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.3]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- uses: c-hive/gha-yarn-cache@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn jest --coverage
- run: yarn lint
- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ github.token }}