Skip to content

Bump lodash from 4.17.21 to 4.17.23 #52

Bump lodash from 4.17.21 to 4.17.23

Bump lodash from 4.17.21 to 4.17.23 #52

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 22
uses: actions/setup-node@v3
with:
node-version: 22.x
- run: npm install
- run: npx playwright install
- run: npm run type-check
- run: npm run build
- run: npm run lint
- run: npm run format
- name: "Run tests"
run: npm run test
- name: "Check for unstaged changes"
run: |
git status --porcelain
git diff-index --quiet HEAD -- || exit 1