Skip to content

Commit

Permalink
ci: update steps, separate lint (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Apr 4, 2023
1 parent 6de99a0 commit ddd4b7f
Show file tree
Hide file tree
Showing 4 changed files with 7,611 additions and 12 deletions.
21 changes: 16 additions & 5 deletions packages/core/.github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,24 @@ jobs:
strategy:
matrix:
node:
- '14'
- '18'
- '16'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm ci
- run: npm test
- run: npm run coverage
- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}

lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- run: npm ci
- run: npm run lint
1 change: 0 additions & 1 deletion packages/core/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
coverage
node_modules
package-lock.json
Loading

0 comments on commit ddd4b7f

Please sign in to comment.