Skip to content

Commit

Permalink
feat(test): add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanix-Darker committed May 6, 2024
1 parent 39c71e6 commit 83b3989
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI Tests

on: [push]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Install dependencies
run: npm install

- name: Tests
run: npm test

0 comments on commit 83b3989

Please sign in to comment.