Skip to content

Commit

Permalink
Better naming in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
paazmaya committed Dec 21, 2024
1 parent 8bdbaaf commit a1ab1b4
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/linting-and-unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Use Node.js v22
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: npm ci
- run: npm run lint
- run: npm test

- name: Install Node.js dependencies
run: npm ci

- name: Lint and test
run: |
npm run lint
npm test

0 comments on commit a1ab1b4

Please sign in to comment.