Skip to content

Commit a083c20

Browse files
Upgrade Node.js version and remove lint step
Updated Node.js version from 20 to 22 and removed lint step.
1 parent 26b63c5 commit a083c20

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/frontend.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,17 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@v4
2121

22-
- name: Set up Node.js 20
22+
- name: Set up Node.js 22
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: "20"
25+
node-version: "22"
2626
cache: "npm"
2727
cache-dependency-path: "frontend/package-lock.json"
2828

2929
- name: Install frontend dependencies
3030
working-directory: frontend
3131
run: npm ci
3232

33-
- name: Run frontend lint
34-
working-directory: frontend
35-
run: npm run lint --if-present
36-
3733
- name: Build frontend
3834
working-directory: frontend
3935
run: npm run build

0 commit comments

Comments
 (0)