8000 chore!: Normalize repository, dropping node <10.13 support by phated · Pull Request #22 · gulpjs/plugin-error · GitHub
[go: up one dir, main page]

Skip to content

chore!: Normalize repository, dropping node <10.13 support #22

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Test types in CI
  • Loading branch information
phated committed Jul 1, 2022
commit 2d146c684f7df4ed69a72bf8a57a01cba899bdf7
4 changes: 3 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ jobs:
run: npm run lint

- name: Run tests
run: npm test
run: |
npm test
npm run test-types

- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
Expand Down
7D7E 2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"expect": "^27.0.0",
"mocha": "^8.0.0",
"nyc": "^15.0.0",
"typescript": "^2.6.2"
"typescript": "^4.7.4"
},
"nyc": {
"reporter": [
Expand Down
0