Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 94e98ab

Browse files
committed
Add test.yml workflow to run tests
1 parent 68bf076 commit 94e98ab

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: 'build-test'
2+
on: # rebuild any PRs and main branch changes
3+
pull_request:
4+
branches:
5+
- main
6+
- 'releases/*'
7+
push:
8+
branches:
9+
- main
10+
- 'releases/*'
11+
12+
jobs:
13+
build: # make sure build/ci work properly
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- run: |
18+
npm install
19+
- run: |
20+
npm run all

0 commit comments

Comments
 (0)