Skip to content

Commit

Permalink
Refactor CI configuration and update Node.js setup
Browse files Browse the repository at this point in the history
  • Loading branch information
alon710 committed Oct 7, 2024
1 parent a1fff8b commit 4878a57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "latest"
check-latest: true
node-version: "latest" # Set to always use the latest version of Node.js
check-latest: true # Ensure you are using the most up-to-date version that satisfies the spec
cache: "yarn" # Cache dependencies installed with yarn
cache-dependency-path: "**/yarn.lock" # Cache key will be based on yarn.lock file to reflect dependency changes
- name: Install Dependencies
run: npm install --global yarn && yarn install
- name: Lint
Expand Down

0 comments on commit 4878a57

Please sign in to comment.