fix: change silent to warn for loglevel config
#1690
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '!*' | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| FORCE_COLOR: 2 | |
| jobs: | |
| test: | |
| name: Node.js ${{ matrix.node }} on ${{ matrix.os }} | |
| timeout-minutes: 3 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| node: [24] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: corepack enable npm | |
| - run: npm --version | |
| - run: npm install | |
| - run: npm run lint | |
| - run: npm run test |