Skip to content

Commit edfa96d

Browse files
committed
test: add a sanity test for exports
1 parent 9dc2cc9 commit edfa96d

5 files changed

Lines changed: 3084 additions & 4 deletions

File tree

.github/workflows/test.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Test
2+
3+
on: push
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Use Node.js 14
11+
uses: actions/setup-node@v2
12+
with:
13+
node-version: 14
14+
- run: npm install
15+
- run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
source
22
*.tgz
3+
node_modules

0 commit comments

Comments
 (0)