Skip to content

25.11.17

25.11.17 #319

Workflow file for this run

name: Lint the code
on:
push:
branches:
- '*'
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v6
with:
node-version: 22
- name: Lint the code
run: |
npm ci
npm run lint