Skip to content

Commit

Permalink
Update node-version format in CI workflow
Browse files Browse the repository at this point in the history
Change double quotes to single quotes for consistency in the node-version declaration. This adheres to the coding style guidelines and prevents potential issues with YAML parsers.
  • Loading branch information
Foysal50x committed Aug 30, 2024
1 parent eba52c0 commit dfdb39f
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 @@ -20,10 +20,10 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run CI
run: npm run ci
run: npm run ci

0 comments on commit dfdb39f

Please sign in to comment.