Skip to content

Update dependencies, CI workflows and require Node.js 20 / 22 / 24 #97

Update dependencies, CI workflows and require Node.js 20 / 22 / 24

Update dependencies, CI workflows and require Node.js 20 / 22 / 24 #97

Workflow file for this run

name: Install and test @ava/typescript
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
paths-ignore:
- '*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
nodejs:
name: Node.js
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [^20.8, ^22, ^24]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install --no-audit
- run: npm test
- uses: codecov/codecov-action@v4
with:
files: coverage/lcov.info
name: ${{ matrix.os }}/${{ matrix.node-version }}
token: ${{ secrets.CODECOV_TOKEN }}