Skip to content

chore: update package lockfile #8

chore: update package lockfile

chore: update package lockfile #8

Workflow file for this run

name: CI Tests
on:
push:
branches: [ main, develop, 'feature/**' ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build action
run: npm run build
- name: Check if dist/ is up to date
run: |
if [ -n "$(git status --porcelain dist/)" ]; then
echo "dist/ directory is not up to date. Please run 'npm run build' and commit the changes."
git status --porcelain dist/
exit 1
fi