diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ea95da..565fd9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.7.0, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [10.7.0, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] steps: - uses: actions/checkout@v4 with: @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [16.x, 18.x, 20.x, 22.x] steps: - uses: actions/checkout@v4 with: @@ -46,7 +46,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Install Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Check Node.js version @@ -60,7 +60,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [12.x, 14.x, 16.x, 18.x, 20.x] + node-version: [12.x, 14.x, 16.x, 18.x, 20.x, 22.x] steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4ab5a4a..c21c0ad 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,6 +22,6 @@ jobs: - name: Check Node.js version run: node -pe process.versions - name: Install ESLint + ESLint configs/plugins - run: npm install + run: npm install --only=dev - name: Lint files run: npm run lint