Skip to content

Commit

Permalink
split into core and CLI packages
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jun 24, 2024
1 parent 33b065e commit b42ee82
Show file tree
Hide file tree
Showing 27 changed files with 1,854 additions and 2,200 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 16, 18, 19]
node-version: [12, 14, 16, 18, 20]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: pnpm/[email protected]
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run test:ci
cache: 'pnpm'
- run: pnpm install
- run: pnpm run test:ci
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ tmp
out
.coveralls.yml
coverage
node_modules
node_modules/
dist/
Loading

0 comments on commit b42ee82

Please sign in to comment.