Skip to content

Commit 0a8bf06

Browse files
committed
Prepare for alpha (0.1.0) release
* update version to 0.1.0 * copy recent code & test changes from original repo * switch CI tests to run Node 14 and 16 (remove 15) * run prettier --fix * update dependencies * update .gitignore
1 parent 5c50221 commit 0a8bf06

20 files changed

+2240
-2859
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,23 @@ on:
55
branches:
66
- main
77
jobs:
8-
test:
8+
test-node16:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: use node.js v15.x
12+
- name: use node.js v16.x
1313
uses: actions/setup-node@v1
1414
with:
15-
node-version: 15.x
15+
node-version: 16.x
16+
- run: npm ci --no-optional
17+
- run: npm test
18+
test-node14:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: use node.js v14.x
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: 14.x
1626
- run: npm ci --no-optional
1727
- run: npm test

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
node_modules/
22
dist/
33
.eslintcache
4+
.vscode/
5+
*.tgz

0 commit comments

Comments
 (0)