Skip to content

Commit

Permalink
Create node.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RaviAkshintala authored Sep 27, 2024
1 parent d5ed54e commit 31eb1ec
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Install Node.js and NPM

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
install-node:
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16' # Specify the Node.js version you need

- name: Check Node.js and NPM versions
run: |
node -v
npm -v

0 comments on commit 31eb1ec

Please sign in to comment.