build(deps-dev): bump eslint from 9.39.1 to 9.39.2 #2597
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: Build / Test | |
| permissions: | |
| contents: read | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: npm install, lerna bootstrap, run build and test | |
| run: | | |
| npm i -g npm | |
| npm i | |
| npm run build --if-present | |
| npm run lint | |
| npm run test -- -- --coverage | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v2.3.7 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| base-path: ./packages/purgecss | |
| env: | |
| CI: true | |