mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-13 09:25:49 +00:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.4.0 to 5.0.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](49933ea528...a0853c2454)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-version: 5.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
972 B
YAML
34 lines
972 B
YAML
name: backend:test:lint
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
files-changed:
|
|
name: Detect File Changes - lint
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
lint: ${{ steps.filter.outputs.lint }}
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
|
|
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
|
id: filter
|
|
with:
|
|
filters: |
|
|
lint:
|
|
- '.github/workflows/**/*'
|
|
- 'backend/**/*'
|
|
|
|
lint:
|
|
if: needs.files-changed.outputs.lint == 'true'
|
|
name: Lint
|
|
needs: files-changed
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
|
|
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v4.0.3
|
|
with:
|
|
node-version-file: './.tool-versions'
|
|
- name: Lint
|
|
run: npm install && npm run test:lint:eslint
|
|
working-directory: ./backend
|