Skip to content
This repository has been archived by the owner on Aug 4, 2024. It is now read-only.

Commit

Permalink
Add Unit Tests CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Bwc9876 committed Aug 14, 2022
1 parent 8b04e51 commit 9e55198
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on:
push:
paths-ignore:
- "*.md"
- "LICENSE"
pull_request:
paths-ignore:
- "*.md"
- "LICENSE"
types:
- synchronize

jobs:
RunTests:
name: "Run Tests"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16

- name: Setup pnpm
uses: pnpm/action-setup@v2.0.1

- name: Install dependencies
run: pnpm install

- name: Run Tests
run: pnpm test

0 comments on commit 9e55198

Please sign in to comment.