Skip to content

Bump @types/lodash from 4.14.202 to 4.17.0 (#195) #170

Bump @types/lodash from 4.14.202 to 4.17.0 (#195)

Bump @types/lodash from 4.14.202 to 4.17.0 (#195) #170

Workflow file for this run

name: Push Master
on:
push:
branches:
- master
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: lint
run: |
yarn install --immutable
yarn lint
build:
name: Build
if: "! startsWith(github.event.head_commit.message, '[CI Skip]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: build
run: |
yarn install --immutable
yarn build