Skip to content

Commit

Permalink
feat(ci): github test action
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleytodd committed Oct 18, 2023
1 parent 7e31a87 commit 199f187
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
groups:
production-dependencies:
dependency-type: "production"
development-dependencies:
dependency-type: "development"
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
on:
push:
branches:
- main
pull_request:

jobs:
test:
uses: pkgjs/action/.github/workflows/node-test.yaml@cicd
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"bin": {
"create-package": "bin/create-package"
},
"engines": {
"node": "^18 || ^20 || ^21"
},
"scripts": {
"test": "standard && mocha --timeout=60000",
"test:debug": "mocha --inspect --inspect-brk --timeout=0",
Expand Down

0 comments on commit 199f187

Please sign in to comment.