Merge branch 'master' into production #9
This file contains hidden or 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: Lint JS | |
| on: | |
| push: | |
| paths: | |
| - "_javascript/**/*.js" | |
| - ".github/workflows/scripts/**/*.js" | |
| - "*.js" | |
| pull_request: | |
| paths: | |
| - "_javascript/**/*.js" | |
| - ".github/workflows/scripts/*.js" | |
| - "*.js" | |
| jobs: | |
| lint-js: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: lts/* | |
| - name: Install Dependencies | |
| run: npm i | |
| - name: Lint JS | |
| run: npm run lint:js |