Skip to content

Commit

Permalink
Merge pull request #35 from microlinkhq/next
Browse files Browse the repository at this point in the history
ci: remove npm-check-updates
  • Loading branch information
Kikobeats authored Dec 6, 2022
2 parents b4749fa + bdccdf9 commit 96204ba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install
run: npm install --no-package-lock --ignore-scripts
- name: Contributors
run: npm run contributors
run: |
git config --global user.email ${{ secrets.GIT_EMAIL }}
git config --global user.name ${{ secrets.GIT_USERNAME }}
npm run contributors
2 changes: 1 addition & 1 deletion .github/workflows/main.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
convert --version
convert -list format
convert -list configure
npm install
npm install --no-package-lock
- name: Test
run: npm test
- name: Report
Expand Down
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@
"git-authors-cli": "latest",
"hex-color-regex": "latest",
"nano-staged": "latest",
"npm-check-updates": "latest",
"prettier-standard": "latest",
"simple-git-hooks": "latest",
"standard": "latest",
Expand All @@ -71,20 +70,17 @@
],
"scripts": {
"clean": "rm -rf node_modules",
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"dev": "nodemon --exec \"npm start\" -e \"js\"",
"lint": "standard-markdown README.md && standard",
"postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)",
"preinstall": "npx bin-version-check-cli magick \">=7\"",
"prerelease": "npm run update:check",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"start": "node index.js",
"test": "c8 ava",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
"test": "c8 ava"
},
"license": "MIT",
"commitlint": {
Expand Down

0 comments on commit 96204ba

Please sign in to comment.