-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
01723c7
commit 3752978
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: './' |