Skip to content

Commit

Permalink
Added github work flow : build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidit-Kushwaha committed Jun 30, 2024
1 parent 43cceea commit 473069f
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on: [pull_request, push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install node
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: Install dependencies
run: npm install

- name: Test
run: npm run test

- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}

0 comments on commit 473069f

Please sign in to comment.