Bump vite-plugin-dts from 4.4.0 to 4.5.0 #173
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Original by Spatie as MIT | |
# https://github.com/spatie/package-skeleton-laravel/blob/main/.github/workflows/run-tests.yml | |
name: Run Tests | |
on: | |
push: | |
paths: | |
- '.github/workflows/testing.yml' | |
- '**.js' | |
- '**.ts' | |
- 'package.json' | |
- 'package-lock.json' | |
jobs: | |
testing: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node: ["20", "22"] | |
name: ${{ matrix.node }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Execute tests | |
run: npm run test | |
- name: Execute build | |
run: npm run build |