Skip to content

Commit

Permalink
chore: add automated unit test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeolun committed Jul 7, 2022
1 parent 61a6d35 commit 3e8b5fa
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: Test
on:
push:
pull_request:

jobs:
release:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "lts/*"
- uses: pnpm/action-setup@v2.2.2
with:
version: latest
- name: Install dependencies
run: pnpm i
- name: Run unit tests
run: pnpm run test

0 comments on commit 3e8b5fa

Please sign in to comment.