Skip to content

Commit 60f326c

Browse files
committed
add tests to CI pipeline
1 parent 151113b commit 60f326c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Test Package
2+
3+
on: push
4+
5+
env:
6+
NODE_VERSION: 16
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-22.04
11+
timeout-minutes: 15
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: aboutbits/github-actions-node/setup-and-install@v1
15+
with:
16+
node-version: ${{ env.NODE_VERSION }}
17+
- run: npm run checks

0 commit comments

Comments
 (0)