Skip to content

Commit

Permalink
chore(dev-deps): upgrade & change default workflow version to node 18 (
Browse files Browse the repository at this point in the history
  • Loading branch information
LironEr committed Jul 1, 2023
1 parent 3a856f0 commit b11c11b
Show file tree
Hide file tree
Showing 8 changed files with 4,048 additions and 4,391 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'yarn'

- name: Install dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand All @@ -35,16 +35,16 @@ jobs:
run: yarn test-packages

- uses: codecov/codecov-action@v1
if: ${{ matrix.node-version == '16.x' }} # run this step only one time
if: ${{ matrix.node-version == '18.x' }} # run this step only one time
with:
file: ./coverage/coverage-final.json

- name: Lint
if: ${{ matrix.node-version == '16.x' }} # run this step only one time
if: ${{ matrix.node-version == '18.x' }} # run this step only one time
run: yarn lint-packages

- name: Type check
if: ${{ matrix.node-version == '16.x' }} # run this step only one time
if: ${{ matrix.node-version == '18.x' }} # run this step only one time
run: yarn type-check-packages

website:
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'yarn'

- name: Install dependencies
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '18'
cache: 'yarn'

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": false,
"version": "independent",
"command": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-when": "^3.5.2",
"lerna": "^6.6.1",
"lerna": "^7.1.1",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
Expand Down
24 changes: 12 additions & 12 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,25 +32,25 @@
"regenerator-runtime": "^0.13.11"
},
"devDependencies": {
"@svgr/webpack": "^6.1.2",
"@svgr/webpack": "^8.0.1",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/recharts": "^1.8.21",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"dotenv-webpack": "^7.0.3",
"esbuild-loader": "^2.20.0",
"copy-webpack-plugin": "^11.0.0",
"dotenv-webpack": "^8.0.1",
"esbuild-loader": "^3.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"netlify-cli": "^12.0.11",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
"netlify-cli": "^15.8.0",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}
1 change: 0 additions & 1 deletion website/webpack/webpack.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ const getBaseConfig = (isProd) => {
use: {
loader: 'esbuild-loader',
options: {
loader: 'tsx',
target: 'es2015',
},
},
Expand Down
8,389 changes: 4,024 additions & 4,365 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit b11c11b

Please sign in to comment.