Skip to content

update the release process #27

update the release process

update the release process #27

Workflow file for this run

name: Lint Project
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
env:
CI: true
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: npm ci
- name: Lint project
run: npm run lint