Skip to content

Bump @types/lodash from 4.17.13 to 4.17.14 (#8) #55

Bump @types/lodash from 4.17.13 to 4.17.14 (#8)

Bump @types/lodash from 4.17.13 to 4.17.14 (#8) #55

Workflow file for this run

name: Build
on:
push:
env:
NODE_VERSION: 21
PNPM_VERSION: 9
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/[email protected]
- name: Setup PNPM
uses: pnpm/[email protected]
with:
version: ${{ env.PNPM_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint