Skip to content

Commit

Permalink
use correct gh action version
Browse files Browse the repository at this point in the history
  • Loading branch information
oxdev03 committed Mar 17, 2024
1 parent eb7b585 commit f9ee2f6
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,16 @@ jobs:
test:
runs-on: ubuntu-latest
needs: analyze
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
steps:
- name: Check out code
uses: actions/checkout@v4
with:
node-version: '14'
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run tests
Expand Down

0 comments on commit f9ee2f6

Please sign in to comment.