Make placeholder replacement repo-specific #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JS+CSS Coding Standards | |
on: | |
push: | |
branches: [ trunk, develop ] | |
pull_request: | |
branches: [ trunk, develop ] | |
jobs: | |
lint-js_css-files: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup proper Node.js version | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'package.json' | |
- name: Install dependencies | |
run: npm ci | |
- name: Run JS linter | |
run: npm run lint:scripts | |
- name: Run CSS linter | |
run: npm run lint:styles |