1
0
Fork 0
mirror of https://github.com/actions/setup-node synced 2025-04-04 08:05:50 +00:00

Update test.yml

This commit is contained in:
KathiravanKrish 2024-07-18 10:56:25 +05:30 committed by GitHub
parent ac3f9560af
commit 6dc0140154
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,9 +5,12 @@ on:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: '18.x'
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '18' # Update to the desired Node.js version
- run: npm install
- run: npm test