Skip to content

Commit

Permalink
updated dependencies, exchanged jest with vitest, added npm scripts, …
Browse files Browse the repository at this point in the history
…added github action
  • Loading branch information
matthiasfeist committed Nov 2, 2024
1 parent 9004a98 commit 6ebcfe0
Show file tree
Hide file tree
Showing 7 changed files with 1,473 additions and 4,611 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run CI
run: npm run ci
17 changes: 0 additions & 17 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit 6ebcfe0

Please sign in to comment.