Skip to content

Commit

Permalink
Merge pull request #1420 from Arnei/add-vitest-to-ci
Browse files Browse the repository at this point in the history
Add vitest to ci
  • Loading branch information
lkiesow authored Oct 17, 2024
2 parents 667eaef + a19324c commit 0aa251f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/vitest-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Vitest tests

on:
push:
branches-ignore:
- 'dependabot/**'
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Check out source code
uses: actions/checkout@v4

- name: Install Node Dependency
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install dependencies
run: npm ci

- name: Execute Vitest tests
run: npm run test

0 comments on commit 0aa251f

Please sign in to comment.