Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
nodejs-version: [8, 10, 12]
nodejs-version: [16]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
Expand All @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-node@v2
with:
version: ${{ matrix.nodejs-version }}
- name: Build and test
run: |
npm install
npm test
- name: Install
run: npm ci
- name: Test
run: npm test
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
# Visual Studio Code - https://code.visualstudio.com/
.settings/
.vscode/
tsconfig.json
jsconfig.json

### Linux ###
Expand Down Expand Up @@ -134,6 +133,7 @@ $RECYCLE.BIN/

# End of https://www.gitignore.io/api/node,code,macos,linux,windows

package-lock.json
yarn.lock
dot.js
packages/**/package-lock.json
**/*.js
**/*.d.ts
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test
7 changes: 0 additions & 7 deletions lerna.json

This file was deleted.

Loading