Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
apratimshukla6 committed Sep 21, 2023
2 parents 95256e2 + 406e494 commit 21edb06
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node.js CI

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 14 # Specify the Node.js version you want to use

- name: Install dependencies
run: npm install

- name: Build and test
run: npm run build

0 comments on commit 21edb06

Please sign in to comment.