chore: bump typescript-eslint from 8.31.1 to 8.32.0 #466
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: Kenya API CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install Dependencies, Lint and run Tests | |
| run: | | |
| yarn install | |
| yarn run lint | |
| yarn run test | |
| env: | |
| CI: true | |
| - name: Build | |
| run: yarn run build | |
| env: | |
| CI: true |