Skip to content

chore(deps): update dependency eslint-import-resolver-typescript to v… #1021

chore(deps): update dependency eslint-import-resolver-typescript to v…

chore(deps): update dependency eslint-import-resolver-typescript to v… #1021

Workflow file for this run

# 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 # EOL 2023-09-11
- 18.x # EOL 2025-04-30
- 19.x # EOL 2023-06-01
- 20.x # EOL 2026-04-30
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true