Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(refactor) update dependencies for node16 #200

Merged
merged 15 commits into from
Aug 30, 2023
10 changes: 5 additions & 5 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [16.20.x]

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install
run: npm run bootstrap:ignorescripts && npm run install:peer
run: npm install

- name: Run Build Check
run: npm run build
Expand All @@ -41,7 +41,7 @@ jobs:
run: npm run test

- name: Annotate Checks
uses: agyemanjp/ci-checks-action@2.0.3
uses: tarcisiozf/ci-checks-action@master
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
checks: '[
Expand Down
84,058 changes: 73,420 additions & 10,638 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,17 @@
"scripts": {
"install:peer": "install-peers -f",
"remove:peer": "rm -rf node_modules/react node_modules/react-dom node_modules/react-redux",
"bootstrap": "npm install && lerna bootstrap --no-hoist",
"bootstrap:ignorescripts": "npm install && lerna bootstrap --no-hoist --ignore-scripts",
"bootstrap:dev": "npm install && npm run install:peer && lerna bootstrap --no-hoist --force-local",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run build",
"build:css": "lerna run build:css",
"test": "lerna run test",
"verify": "npm run lint && npm run build && npm run build:css && npm run test"
},
"devDependencies": {
"@storybook/addon-actions": "^6.2.9",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"enzyme-to-json": "^3.5.0",
"install-peers-cli": "^2.2.0",
"jest": "26.6.0",
Expand All @@ -36,8 +34,8 @@
"lerna": "^4.0.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-redux": "^7.2.1"
}
}
Loading
Loading