Skip to content

Commit

Permalink
change:update package.json script
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed May 10, 2023
1 parent 2a10b2c commit 41ed3ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node: ['18.x', '17.x']
node: ['18.x']
name: test/node ${{ matrix.node }}/${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '17'
node-version: '18'
- run: npm install
- run: npm run build
- uses: paambaati/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "node ./lib/index.js",
"copy-files": "copyfiles -u 1 src/**/*.yml lib",
"dev": "env-cmd -f ./src/config/local.env nodemon ./src/index.ts",
"test": "env-cmd -f ./src/config/test.env jest --detectOpenHandles",
"test": "env-cmd -f ./src/config/test.env jest --ci --detectOpenHandles",
"lint": "eslint '**/*.ts'",
"lint-fix": "eslint --fix '**/*.ts'",
"format": "prettier --write 'src/**/*.ts'"
Expand Down

0 comments on commit 41ed3ae

Please sign in to comment.