Skip to content

Commit

Permalink
fix: update dependencies (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert authored Dec 10, 2023
1 parent c8e2ca0 commit 48c786d
Show file tree
Hide file tree
Showing 4 changed files with 574 additions and 1,069 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm

- name: 📦 Install dependencies
run: pnpm install

- name: 🔎 Lint
run: pnpm lint

- name: 🚨 Run unit tests
run: pnpm test:unit
- name: ⚒️ Build

- name: 🛠️ Build
run: pnpm build
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@v2

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm

- name: 📦 Install dependencies
run: pnpm install

- name: Release
run: pnpm semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm semantic-release
31 changes: 16 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "template-vue",
"version": "1.1.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
Expand All @@ -15,9 +16,9 @@
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@fontsource/open-sans": "^5.0.17",
"@fontsource/open-sans": "^5.0.18",
"pinia": "^2.1.7",
"vue": "^3.3.9",
"vue": "^3.3.11",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5"
},
Expand All @@ -27,25 +28,25 @@
"@semantic-release/git": "^10.0.1",
"@tsconfig/node20": "^20.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.10.1",
"@vitejs/plugin-vue": "^4.5.0",
"@types/node": "^20.10.4",
"@vitejs/plugin-vue": "^4.5.2",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "~0.4.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^23.0.0",
"lint-staged": "^15.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"eslint": "^8.55.0",
"eslint-plugin-vue": "^9.19.2",
"jsdom": "^23.0.1",
"lint-staged": "^15.2.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.1.1",
"sass": "^1.69.5",
"semantic-release": "^22.0.8",
"semantic-release": "^22.0.10",
"simple-git-hooks": "^2.9.0",
"typescript": "~5.3.2",
"vite": "^5.0.4",
"vitest": "~0.34.6",
"vue-tsc": "^1.8.24"
"typescript": "~5.3.3",
"vite": "^5.0.7",
"vitest": "^1.0.4",
"vue-tsc": "^1.8.25"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
Expand Down
Loading

0 comments on commit 48c786d

Please sign in to comment.