Skip to content

Commit

Permalink
Merge pull request #66 from fac30/chore/gh-actions
Browse files Browse the repository at this point in the history
chore: add testing workflow
  • Loading branch information
maxitect authored Dec 9, 2024
2 parents b9fbacf + 59d31b5 commit d9aef79
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests on Push

on:
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install dependencies
run: npm install --legacy-peer-deps

- name: Run tests
run: npm run test

0 comments on commit d9aef79

Please sign in to comment.