Skip to content

chore(deps-dev): bump esbuild from 0.27.1 to 0.27.3 #192

chore(deps-dev): bump esbuild from 0.27.1 to 0.27.3

chore(deps-dev): bump esbuild from 0.27.1 to 0.27.3 #192

Workflow file for this run

name: CI
on:
push:
branches: [ main, master, develop ]
pull_request:
branches: [ main, master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run type checking
run: npm run check-types
- name: Run tests
run: npm test -- --coverage
- name: Build extension
run: npm run compile:prod
- name: Check for uncommitted changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Error: There are uncommitted changes after build"
git status
exit 1
fi