Skip to content

Commit

Permalink
fix node-version to a specific version in ci.yml
Browse files Browse the repository at this point in the history
to avoid issues downloading new versions
see actions/setup-node#160 (comment) for more context
  • Loading branch information
HelinaBerhane authored and Helina committed Sep 25, 2023
1 parent 26fadf0 commit 11a17af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19.x
node-version: 18.18
cache: "npm"
- run: npm ci
- run: npm run prettier:check
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 19.x
node-version: 18.18
cache: "npm"
- run: npm ci
- run: npm test
Expand Down

0 comments on commit 11a17af

Please sign in to comment.