diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c29dd02..1bf25f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,17 +10,13 @@ concurrency: jobs: test: - runs-on: ubuntu-latest - strategy: - matrix: - node-version: [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: 'lts/*' - name: npm install and test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}