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

Create mynodeaction.yml

This commit is contained in:
DivyaHclTraining27 2025-01-30 23:26:11 +05:30 committed by GitHub
parent 802632921f
commit 90651f685f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
.github/workflows/mynodeaction.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Node.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
- name: Setup Node.js environment
uses: actions/setup-node@v4.2.0
with:
node-version: '14' # Specify the Node.js version you need
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test