Skip to content

Commit

Permalink
Merge pull request #6 from falsepopsky/dev
Browse files Browse the repository at this point in the history
chore: update node, pnpm, actions
  • Loading branch information
falsepopsky authored Apr 11, 2024
2 parents 12d086f + 391ac2f commit 3059026
Show file tree
Hide file tree
Showing 14 changed files with 628 additions and 624 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"features": {
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "20.11.1",
"version": "20.12.2",
"nvmVersion": "latest"
}
},
Expand Down
23 changes: 15 additions & 8 deletions .github/labeler.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
"📦 @untidy/mobygames":
- "packages/api/src/**"
- changed-files:
- any-glob-to-any-file: "packages/api/src/**"
"📚 docs":
- "packages/web/**"
- "README.md"
- "packages/api/README.md"
- changed-files:
- any-glob-to-any-file:
- "packages/web/**"
- "README.md"
- "packages/api/README.md"
"🧪 tests":
- "packages/api/tests/**"
- "mocks/**"
- changed-files:
- any-glob-to-any-file:
- packages/api/tests/**
- mocks/**
"⚙️ configs":
- ".prettierrc"
- ".eslintrc.cjs"
- changed-files:
- any-glob-to-any-file:
- ".prettierrc"
- ".eslintrc.cjs"
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main

env:
PNPM_VERSION: 8.15.5
PNPM_VERSION: 8.15.6

jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- main

env:
PNPM_VERSION: 8.15.5
PNPM_VERSION: 8.15.6

jobs:
lint:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
permissions:
actions: read
contents: read
packages: read
security-events: write

strategy:
Expand All @@ -22,10 +23,10 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: javascript
languages: javascript-typescript
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:javascript"
category: "/language:javascript-typescript"
5 changes: 2 additions & 3 deletions .github/workflows/label.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Labeler
on: [pull_request]
on: pull_request

jobs:
labeler:
Expand All @@ -9,7 +9,6 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4.3.0
- uses: actions/labeler@v5.0.0
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yaml
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

env:
PNPM_VERSION: 8.15.5
PNPM_VERSION: 8.15.6

jobs:
release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
deploy:
name: 🏗️ Build and Deploy
name: 🏗️ Build and Deploy to Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 8.15.5
version: 8.15.6

- name: Setup Node
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.11.1
v20.12.2
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/coverage-v8": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-untidy": "workspace:^",
"msw": "^2.2.10",
"msw": "^2.2.13",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-tailwindcss": "^0.5.12",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
"prettier-plugin-tailwindcss": "^0.5.13",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"engines": {
"node": "^20.0.0",
Expand All @@ -36,5 +36,5 @@
"esbuild": "0.20.2"
}
},
"packageManager": "[email protected].5"
"packageManager": "[email protected].6"
}
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"test": "vitest --coverage"
},
"devDependencies": {
"@types/node": "^20.11.30",
"typescript": "^5.4.3"
"@types/node": "^20.12.7",
"typescript": "^5.4.5"
},
"engines": {
"node": "^18.19.1 || ^20.8.1"
Expand Down
10 changes: 5 additions & 5 deletions packages/eslint-config-untidy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"main": "./index.cjs",
"exports": "./index.cjs",
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-jsdoc": "^48.2.3",
"eslint-plugin-n": "^17.2.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vitest": "^0.3.26"
"eslint-plugin-vitest": "0.4.1"
},
"devDependencies": {
"eslint": "^8.57.0"
Expand Down
12 changes: 6 additions & 6 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
},
"dependencies": {
"@astrojs/check": "^0.5.10",
"@astrojs/starlight": "^0.21.2",
"@astrojs/starlight-tailwind": "^2.0.1",
"@astrojs/starlight": "^0.21.5",
"@astrojs/starlight-tailwind": "^2.0.2",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.5.9",
"sharp": "^0.33.2",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3"
"astro": "^4.6.0",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5"
}
}
Loading

0 comments on commit 3059026

Please sign in to comment.