Skip to content

Commit

Permalink
added the basc ci yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Jul 31, 2024
1 parent cd913cf commit 3801447
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
branches:
- main
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20

- name: install dependecies
run: npm ci

- name: Build and test
run: npm run build && npm test

0 comments on commit 3801447

Please sign in to comment.