Skip to content

Bump the vue group with 7 updates #185

Bump the vue group with 7 updates

Bump the vue group with 7 updates #185

Workflow file for this run

name: Check commits
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
name: Check
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
- name: Prepare Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install Node packages
run: npm ci
- name: Run code linter
run: npm run format:check