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

Commit 5447098

Browse files
authored
feat: Add GitHub actions for running tests on push
1 parent ecae629 commit 5447098

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: test
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Install modules
9+
run: yarn
10+
- name: Run tests
11+
run: yarn test

0 commit comments

Comments
 (0)