FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
deploy-nodejs/.github/workflows/stack-linter.yml at test · github/deploy-nodejs · GitHub
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
github
/
deploy-nodejs
Public archive
Notifications
You must be signed in to change notification settings
Fork
30
Star
47
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
deploy-nodejs
/
.github
/
workflows
/
stack-linter.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
73 lines (65 loc) · 1.84 KB
Breadcrumbs
deploy-nodejs
/
.github
/
workflows
/
stack-linter.yml
Copy path
File metadata and controls
73 lines (65 loc) · 1.84 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
#
############################
#
############################
#
# CI/CT/CD GitHub Actions ##
#
############################
#
############################
name
:
Source Linter
#
#
Documentation:
#
https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#
############################
#
Start the job on all push #
#
############################
on
:
['push']
#
##############
#
Set the Job #
#
##############
jobs
:
build
:
#
Name the Job
name
:
Source linter
#
Set the agent to run on
runs-on
:
ubuntu-latest
#
#################
#
Load all steps #
#
#################
steps
:
#
#########################
#
Checkout the code base #
#
#########################
-
name
:
Checkout Code
uses
:
actions/checkout@master
#
####################
#
Install Ruby Libs #
#
####################
-
name
:
Set up Ruby
uses
:
actions/setup-ruby@master
with
:
ruby-version
:
2.6.x
#
###################
#
Install NPM Libs #
#
###################
-
name
:
Setup NPM
uses
:
actions/setup-node@master
with
:
node-version
:
10.x
#
################################
#
Install all base dependancies #
#
################################
-
name
:
Install Dependencies
shell
:
bash
run
:
./.automation/install-deps.sh
#
############################################
#
Run the markup and markdown linter script #
#
############################################
-
name
:
Run Markup and Markdown Linter
shell
:
bash
run
:
./.automation/markup-markdown-linter.sh
#
##################################
#
Run the scripting linter script #
#
##################################
-
name
:
Run Scripting Linter
shell
:
bash
run
:
./.automation/scripting-linter.sh
Back
|
FazBrowse Home
|
New Git URL