Skip to content

Commit

Permalink
Update frontend.yml to simplify Node.js setup and remove matrix strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescorpian committed Feb 5, 2025
1 parent dfddfa6 commit 31c972e
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,16 @@ jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x]

defaults:
run:
working-directory: client

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "frontend/package-lock.json"
node-version: "22.x"
- run: npm run build
working-directory: frontend
- name: Setup Pages
Expand Down

0 comments on commit 31c972e

Please sign in to comment.