This repository was archived by the owner on Jun 29, 2025. It is now read-only.
Bump eslint-plugin-prettier from 4.2.1 to 5.4.0 #1122
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: "ci" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4.2.0 | |
| with: | |
| node-version: '18.x' | |
| - run: npm ci --no-progress | |
| - run: npm run lint | |
| test: | |
| name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| node: [18, 20, 22] | |
| os: [ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4.2.0 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: npm ci --no-progress | |
| - run: npm test |