Skip to content

Commit

Permalink
Prepare for alpha (0.1.0) release
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
justingrant committed Jul 8, 2021
1 parent 5c50221 commit 0a8bf06
Show file tree
Hide file tree
Showing 20 changed files with 2,240 additions and 2,859 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,23 @@ on:
branches:
- main
jobs:
test:
test-node16:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use node.js v15.x
- name: use node.js v16.x
uses: actions/setup-node@v1
with:
node-version: 15.x
node-version: 16.x
- run: npm ci --no-optional
- run: npm test
test-node14:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: use node.js v14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci --no-optional
- run: npm test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules/
dist/
.eslintcache
.vscode/
*.tgz
Loading

0 comments on commit 0a8bf06

Please sign in to comment.