chore(deps): update dependency typescript-eslint to v8.12.2 (#592) #1673
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | |
name: tests | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 16.x # deprecated | |
- 17.x # deprecated | |
- 18.x # EOL 2025-04-30 | |
- 19.x # deprecated | |
- 20.x # EOL 2026-04-30 | |
- 21.x # deprecated | |
- 22.x # EOL 2027-04-30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm run build --if-present | |
- run: npm test | |
env: | |
CI: true |