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 722b575
Show file tree
Hide file tree
Showing 7 changed files with 2,626 additions and 3,027 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
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"eslint-webpack-plugin": "^3.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"netlify-cli": "^12.0.11",
"netlify-cli": "^15.8.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
Expand Down
Loading

0 comments on commit 722b575

Please sign in to comment.