Skip to content

Commit

Permalink
Merge pull request #253 from PoliNetworkOrg/angeousta-patch-1
Browse files Browse the repository at this point in the history
Create fix_peer_dependencies.yml
  • Loading branch information
angeousta authored Dec 4, 2023
2 parents 5eabe18 + e993ae1 commit b3fd699
Show file tree
Hide file tree
Showing 3 changed files with 1,031 additions and 1,078 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/fix_peer_dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Fix Peer Dependencies

on:
push:
branches:
- '*'

jobs:
fix-peer-dependencies:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Install dependencies
run: yarn install

- name: Fix peer dependencies
run: yarn upgrade --latest

- name: Git setup
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: Commit changes
run: |
git add .
git commit -m "Fix conflicting peer dependencies" || true
git pull || true
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "Fix conflicting peer dependencies"
title: "Fix conflicting peer dependencies"
body: "This pull request fixes conflicting peer dependencies."
branch-suffix: timestamp
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"generate": "nuxt generate"
},
"dependencies": {
"@nuxtjs/i18n": "^8.0.0-beta.12",
"@nuxtjs/i18n": "^7.3.1",
"bootstrap": "^5.2.3",
"bootstrap-vue": "^2.23.0",
"core-js": "^3.33.2",
"nuxt": "^3.4.3",
"regenerator-runtime": "^0.13.11",
"vue": "3.3.7",
"core-js": "^3.33.3",
"nuxt": "^3.8.2",
"regenerator-runtime": "^0.14.0",
"vue": "3.3.10",
"vue-server-renderer": "^2.7.15",
"vue-template-compiler": "^2.7.15"
},
Expand Down
Loading

0 comments on commit b3fd699

Please sign in to comment.