Skip to content

Commit

Permalink
Merge pull request #11 from Code-Hex/update-pkgs
Browse files Browse the repository at this point in the history
use pnpm and updated some deps
  • Loading branch information
Code-Hex authored Feb 17, 2024
2 parents 2093287 + 11d9e07 commit 5f62fa6
Show file tree
Hide file tree
Showing 4 changed files with 7,082 additions and 6,484 deletions.
28 changes: 17 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,34 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn test
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm test
env:
CI: true
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn lint-fix
- run: yarn prettier
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm lint-fix
- run: pnpm prettier
- name: Auto commit fixed code
id: auto-commit-action
uses: stefanzweifel/git-auto-commit-action@v4
Expand Down
25 changes: 12 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,24 +25,23 @@
"lint-fix": "eslint --fix --ext .ts .",
"prepublish": "run-p build:*"
},
"dependencies": {},
"devDependencies": {
"@cloudflare/workers-types": "^4.20231025.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"@cloudflare/workers-types": "^4.20240208.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^1.24.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.0",
"firebase-tools": "^12.8.1",
"miniflare": "^3.20231025.1",
"eslint-plugin-import": "^2.29.1",
"firebase-tools": "^13.3.0",
"miniflare": "^3.20240129.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"wrangler": "^3.15.0"
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vitest": "^1.3.0",
"wrangler": "^3.28.3"
},
"keywords": [
"web",
Expand Down
Loading

0 comments on commit 5f62fa6

Please sign in to comment.