Skip to content

Commit

Permalink
created development workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alisha-k-kalladassery committed Dec 5, 2024
1 parent 84ad616 commit 6605e2f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Development

on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
push:
workflow_call:

jobs:
test:
name: Test application
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: "Checkout repository"
uses: actions/checkout@v4

- name: "Setup node"
uses: actions/setup-node@v4
with:
node-version: 16

- name: "Run tests"
run: npm test

0 comments on commit 6605e2f

Please sign in to comment.