Skip to content

Commit

Permalink
Merge pull request #1 from appdmg/dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jozefizso authored Aug 24, 2024
2 parents cbded78 + 6fa57a7 commit 6a78dc2
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: ci

permissions:
contents: read

on:
push:
pull_request:
branches: [ main ]

jobs:
build:
name: build (node v${{ matrix.node }})

runs-on: macos-latest

strategy:
fail-fast: false
matrix:
node: [ 18, 20, 22 ]

steps:
- name: checkout
uses: actions/checkout@v4

- name: setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}

- run: npm install
- run: npm test
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
"fs-temp": "^1.2.1"
},
"devDependencies": {
"mocha": "^7.2.0",
"standard": "^15.0.1",
"ts-readme-generator": "^0.7.3"
"mocha": "^10.7.3",
"standard": "^17.1.0",
"ts-readme-generator": "^0.7.4"
},
"engines": {
"node": ">=8.10.0"
"node": ">=18"
}
}

0 comments on commit 6a78dc2

Please sign in to comment.