Skip to content

ci(version): fix bump actions version #1

ci(version): fix bump actions version

ci(version): fix bump actions version #1

Workflow file for this run

name: Code Quality
on:
pull_request:
branches:
- main-ce
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Set up the repository
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install Dependencies
run: npm ci
- name: Check lint
run: npm run lint