-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'add-pipeline' into 'master'
Add pipeline See merge request shardus/shardus-crypto-utils!18
- Loading branch information
Showing
5 changed files
with
1,696 additions
and
1,442 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,6 @@ | ||
{ | ||
"extends": [ | ||
"./node_modules/gts/" | ||
], | ||
"ignorePatterns": ["build/", "test/"] | ||
} |
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,14 @@ | ||
image: node:16.11.1 #The enviornment which we need | ||
|
||
stages: #Different stages which our pipeline need | ||
- lint | ||
|
||
before_script: | ||
- npm install | ||
|
||
lint: #Name of the job | ||
stage: lint #Tells job which stage it is | ||
script: #Scripts which need to be ran by the server | ||
- npm run lint | ||
- npm run check | ||
- npm run compile |
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
Oops, something went wrong.