Skip to content

Bump @vue/compiler-sfc from 3.4.29 to 3.4.31 in /admin #3156

Bump @vue/compiler-sfc from 3.4.29 to 3.4.31 in /admin

Bump @vue/compiler-sfc from 3.4.29 to 3.4.31 in /admin #3156

name: "presenter:test:lint code with defined linters"
on: [push,pull_request_target]
jobs:
# only (but most important) job from this workflow required for pull requests
# check results serve as run conditions for all other jobs here
files-changed:
name: Detect File Changes - presenter-test-lint-code
runs-on: ubuntu-latest
outputs:
changes: ${{ steps.changes.outputs.presenter-test-lint-code }}
steps:
- uses: actions/checkout@v4
- name: Check for presenter file changes
uses: dorny/paths-filter@v3.0.2
id: changes
with:
token: ${{ github.token }}
filters: .github/file-filters.yml
list-files: shell
lint:
if: needs.files-changed.outputs.changes == 'true'
name: Lint - Presenter
needs: files-changed
runs-on: ubuntu-latest
env:
WORKING_DIRECTORY: ./presenter
steps:
- name: Set Node version
uses: actions/setup-node@v4
with:
node-version: '>=21'
- name: Checkout code
uses: actions/checkout@v4
- name: Presenter | Lint
run: npm install && npm run test:lint
working-directory: ${{env.WORKING_DIRECTORY}}