Skip to content

build(deps): bump typescript-eslint from 8.37.0 to 8.39.1 #85

build(deps): bump typescript-eslint from 8.37.0 to 8.39.1

build(deps): bump typescript-eslint from 8.37.0 to 8.39.1 #85

name: Integration Tests
on:
pull_request:
push:
branches:
- "main"
workflow_dispatch:
jobs:
vitest-integration:
name: Vitest Integration Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
steps:
- name: Check out
uses: actions/checkout@v4
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Install create-next-app globally
run: npx -y create-next-app@latest --version
- name: Run Vitest integration tests
run: npm test
env:
NODE_VERSION: ${{ matrix.node-version }}