Skip to content

Commit

Permalink
ci: run unit tests via GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
axe312ger committed Jan 28, 2022
1 parent bdcbdba commit 8b0007b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Unit Tests

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'

# Install
- name: Install dependencies via yarn 📦
run: yarn install --prefer-offline --frozen-lockfile

# Run unit tests 🚀
- name: Run tests
run: yarn test

0 comments on commit 8b0007b

Please sign in to comment.