Skip to content

build(deps): bump the github-actions group with 2 updates #1758

build(deps): bump the github-actions group with 2 updates

build(deps): bump the github-actions group with 2 updates #1758

Workflow file for this run

name: Code quality checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v5
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, code style check
run: |
npm ci
npm run lint
npm run codestyle-check