Skip to content

chore: modernize dev tooling and CI (TypeScript 7, vitest, oxlint, codecov, Node 22-26) #948

chore: modernize dev tooling and CI (TypeScript 7, vitest, oxlint, codecov, Node 22-26)

chore: modernize dev tooling and CI (TypeScript 7, vitest, oxlint, codecov, Node 22-26) #948

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22, 24, 26]
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
- name: EditorConfig Lint
uses: docker://mstruebing/editorconfig-checker:4.0.1
- name: Install
run: yarn
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Codecov
if: matrix.node-version == 24
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}