Bump cipher-base from 1.0.4 to 1.0.6 in /hugo #340
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 files" | |
| on: | |
| push: | |
| branches: | |
| tags: | |
| paths: | |
| - '.github/workflows/ci-frontend-lint.yml' | |
| - 'hugo/package.json' | |
| - 'hugo/package-lock.json' | |
| - 'hugo/package-lock.json' | |
| - 'hugo/.eslintignore' | |
| - "hugo/**/*.jsx?" | |
| - "hugo/**/*.tsx?" | |
| pull_request: | |
| paths: | |
| - '.github/workflows/ci-frontend-lint.yml' | |
| - 'hugo/package.json' | |
| - 'hugo/package-lock.json' | |
| - 'hugo/package-lock.json' | |
| - 'hugo/.eslintignore' | |
| - "hugo/**/*.jsx?" | |
| - "hugo/**/*.tsx?" | |
| jobs: | |
| frontend-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22.x' | |
| cache: 'npm' | |
| cache-dependency-path: hugo | |
| - run: npm ci --loglevel warn | |
| working-directory: hugo | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ${{ github.workspace }}/hugo/node_modules/.cache | |
| key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - run: npm run eslint | |
| working-directory: hugo |