Skip to content

Commit

Permalink
chore: update dependencies (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
bicstone authored Jun 22, 2023
1 parent 4be75a2 commit 7a1df1b
Show file tree
Hide file tree
Showing 19 changed files with 13,021 additions and 7,038 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist/* linguist-generated=true
yarn.lock linguist-generated=true
package-lock.json linguist-generated=true
15 changes: 0 additions & 15 deletions .github/workflows/actionlint.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/ci.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/lint-pr-title.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/njsscan-analysis.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
Build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".node-version"
cache: "npm"
- run: npm ci
- run: npm audit signatures
- run: npm run build
- run: npm run test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/
9 changes: 0 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,3 @@ typings/

# next.js build output
.next

# yarn v3
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

yarn build
npm run build
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.20.1
6 changes: 0 additions & 6 deletions .renovaterc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
{
"extends": ["github>bicstone/renovate-config"],
"packageRules": [
{
"groupName": "devDependencies",
"matchDepTypes": ["dependencies"],
"matchPackagePatterns": ["*"],
"matchUpdateTypes": ["minor", "patch"]
},
{
"enabled": false,
"matchPackagePatterns": ["axios"]
Expand Down
873 changes: 0 additions & 873 deletions .yarn/releases/yarn-3.5.0.cjs

This file was deleted.

2 changes: 0 additions & 2 deletions .yarnrc.yml

This file was deleted.

8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ Pull Requests are always welcome, but please discuss larger changes via issue be

1. Fork the repository.
1. Clone the fork to your local machine
1. Install the dependencies with yarn
`yarn install`
1. Install the dependencies with npm
`npm install`
1. Create a new topic branch
`git checkout -b fix/topic`
1. Make changes
1. Run build & test
`yarn build`
`yarn test`
`npm run build`
`npm run test`
1. commit and push
`git push -u origin HEAD`
1. make a Pull Request.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Backlog Notify

[![GitHub Actions による CI check の結果](https://github.com/bicstone/backlog-notify/actions/workflows/ci.yml/badge.svg)](https://github.com/bicstone/backlog-notify/actions/workflows/ci.yml)
[![njsscan sarif による静的解析の結果](https://github.com/bicstone/backlog-notify/actions/workflows/njsscan-analysis.yml/badge.svg)](https://github.com/bicstone/backlog-notify/actions/workflows/njsscan-analysis.yml)
[![GitHub Actions による CI check の結果](https://github.com/bicstone/backlog-notify/actions/workflows/test.yml/badge.svg)](https://github.com/bicstone/backlog-notify/actions/workflows/ci.yml)
[![FOSSA によるライセンス分析の結果](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fbicstone%2Fbacklog-notify.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fbicstone%2Fbacklog-notify?ref=badge_shield)
[![Sonar Cloud による静的解析の結果](https://sonarcloud.io/api/project_badges/measure?project=bicstone_backlog-notify&metric=alert_status)](https://sonarcloud.io/dashboard?id=bicstone_backlog-notify)
[![Deep Source による静的解析の結果](https://deepsource.io/gh/bicstone/backlog-notify.svg/?label=active+issues&token=iPw2LS4cY5EQQH_JiN72YOr2)](https://deepsource.io/gh/bicstone/backlog-notify/?ref=repository-badge)
Expand Down
Loading

0 comments on commit 7a1df1b

Please sign in to comment.