Bump eslint from 8.57.0 to 9.2.0 #85
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
name: Node v${{ matrix.node-version }} / stylelint v${{ matrix.stylelint }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: [18, 20] | |
stylelint: [14, 15, 16] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node v${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: | | |
npm install "stylelint@${{ matrix.stylelint }}" | |
npm install | |
- name: Version Check | |
run: | | |
node --version | |
npm ls stylelint | |
- name: Test packages | |
run: npm test | |
success: | |
name: Success | |
needs: build | |
runs-on: ubuntu-latest | |
if: false # TODO: Remove when Jest issues are resolved | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm install | |
- name: Run Code Coverage | |
run: npm run jest --coverage | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.github_token }} | |
path-to-lcov: ./coverage/lcov.info |