Fix security vulnerabilities, update the browserslist-db, and update all dependencies. #8
Workflow file for this run
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 Code Base | |
| defaults: | |
| run: | |
| shell: bash | |
| on: | |
| push: | |
| branches-ignore: [main] | |
| pull_request: | |
| jobs: | |
| eslint: | |
| name: Lint TypeScript and JavaScript files with eslint and style files with stylelint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Install Dependencies and Build | |
| run: npm ci --ignore-scripts && npm run build | |
| - name: Lint files with eslint and stylelint | |
| run: npm run lint:check |