Skip to content

chore(main): release 4.7.0 #1734

chore(main): release 4.7.0

chore(main): release 4.7.0 #1734

Workflow file for this run

# This workflow handles CI tasks: linting, testing, and deployment
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js 22.x
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
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Node.js 22.x
uses: actions/setup-node@v6
with:
node-version: 22.x
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test