Skip to content

Commit

Permalink
hmgg
Browse files Browse the repository at this point in the history
  • Loading branch information
yofukashino committed Dec 16, 2023
1 parent 9547647 commit 15adaea
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 145 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
name: Lint

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
run-linters:
name: Run linters
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v2
steps:
- name: Check out Git repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20

- uses: pnpm/action-setup@v2
with:
version: latest
- uses: pnpm/action-setup@v2
with:
version: latest

- name: Install Node.js dependencies
run: pnpm install
- name: Install Node.js dependencies
run: pnpm install

- name: Run linters
run: pnpm run lint
- name: Run linters
run: pnpm run lint
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@
"devDependencies": {
"@types/node": "^18.17.6",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.47.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^2.8.8",
"replugged": "^4.7.6",
"typescript": "^4.9.5"
"replugged": "^4.7.7",
"typescript": "^5.0.0"
}
}
Loading

0 comments on commit 15adaea

Please sign in to comment.