You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/codecommitWorkflow.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ jobs:
26
26
uses: actions/checkout@v2
27
27
# Run Linter against code base
28
28
- name: Lint code base
29
-
uses: docker://github/super-linter:v3.3.2
29
+
uses: docker://github/super-linter:v3
30
30
env:
31
31
VALIDATE_ALL_CODEBASE: true # will parse the entire repository and find all files to validate across all types. NOTE: When set to false, only new or edited files will be parsed for validation.
Copy file name to clipboardExpand all lines: .github/workflows/pushtoMaster.yml
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ jobs:
27
27
uses: actions/checkout@v2
28
28
# Run Linter against code base
29
29
- name: Lint code base
30
-
uses: docker://github/super-linter:v3.3.2
30
+
uses: docker://github/super-linter:v3
31
31
env:
32
32
VALIDATE_ALL_CODEBASE: true # will parse the entire repository and find all files to validate across all types. NOTE: When set to false, only new or edited files will be parsed for validation.
33
33
DEFAULT_BRANCH: master
@@ -80,13 +80,13 @@ jobs:
80
80
run: CI=test npm run test
81
81
- name: Run test coverage report
82
82
run: npm run coverage
83
-
# - name: Build application
84
-
# run: npm run build
85
-
# - name: Deploy to gh-pages
86
-
# uses: peaceiris/actions-gh-pages@v3
87
-
# with:
88
-
# deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
89
-
# publish_dir: ./build
83
+
- name: Build application
84
+
run: npm run build
85
+
- name: Deploy to gh-pages
86
+
uses: peaceiris/actions-gh-pages@v3
87
+
with:
88
+
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
89
+
publish_dir: ./build
90
90
deploy-images:
91
91
name: deploy-images
92
92
needs: react-deployment
@@ -99,14 +99,14 @@ jobs:
99
99
- name: Deploy Images
100
100
shell: bash
101
101
run: |
102
-
echo "Following deployment of the gh-pages branch, need to fetching the images from the images folder of the master branch "
102
+
echo "Following deployment of the gh-pages branch, need to fetch the images from the images folder of the master branch "
103
103
echo " into the images folder of the gh-pages branch. This is done to facilitate sequence to sequence links."
104
104
git branch -a
105
-
#git checkout gh-pages
105
+
git checkout gh-pages
106
106
# checkout the images folder from the master branch
107
107
# the -- parameter indicates do not interpret any more arguments as command options.
Copy file name to clipboardExpand all lines: .github/workflows/stale.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ jobs:
15
15
runs-on: ubuntu-latest
16
16
17
17
steps:
18
-
- uses: actions/stale@v1
18
+
- uses: actions/stale@v3
19
19
with:
20
20
repo-token: ${{ secrets.GITHUB_TOKEN }}
21
21
stale-issue-message: 'This issue has been marked as Stale because it has been open for 14 days with no activity. Remove the stale label or comment on the issue, or it will be closed in 7 days.'
0 commit comments