Skip to content

chore(deps-dev): bump semantic-release from 24.2.1 to 24.2.2 in the semantic-release group #1680

chore(deps-dev): bump semantic-release from 24.2.1 to 24.2.2 in the semantic-release group

chore(deps-dev): bump semantic-release from 24.2.1 to 24.2.2 in the semantic-release group #1680

Workflow file for this run

#-----------------------------
# CI Github Action: Lint
#-----------------------------
name: lint
on:
push:
branches: [ main, main-beta ]
pull_request:
branches: [ main, main-beta ]
workflow_dispatch:
env:
node-version: 20.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node v${{ env.node-version }}
uses: actions/setup-node@v4
with:
cache: 'npm'
node-version: ${{ env.node-version }}
- name: Install NPM Dependencies
run: npm ci
- name: Run Linting JS
run: npm run lint:js
- name: Run Linting CSS
run: npm run lint:css