Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SAINIAbhishek committed Oct 3, 2024
1 parent 01723c7 commit 3752978
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Node Auth Application Pipeline

# Trigger the workflow
on:
push:
branches:
- '**' # Matches every branch for push events
pull_request:
branches:
- '**' # Matches every branch for pull request events

jobs:
# Step: Cache and Install Dependencies
npm:
uses: SAINIAbhishek/shared-workflows/.github/workflows/cache-install-dependencies.yml@main
with:
node-version: '20.17.0'
lock-file: 'package-lock.json'
cache-path: 'node_modules'
cache-key-prefix: 'auth'
working-directory: './'

0 comments on commit 3752978

Please sign in to comment.