Skip to content

chore: bump eslint from 9.14.0 to 9.17.0 #1102

chore: bump eslint from 9.14.0 to 9.17.0

chore: bump eslint from 9.14.0 to 9.17.0 #1102

Workflow file for this run

name: checks
on: [push, pull_request]
jobs:
lint-js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci --no-audit
- run: npm run lint:js
lint-css:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci --no-audit
- run: npm run lint:css
lint-webext:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: freaktechnik/web-ext-lint@v1
test:
runs-on: ubuntu-latest
needs: [ lint-js, lint-css, lint-webext ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci --no-audit
- run: npm run test:js
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}