Adding commit to CI

This commit is contained in:
Jamie Hewitt 2022-05-18 10:47:12 +03:00
parent 8b164b9f85
commit 77af85cd3a
2 changed files with 22 additions and 2 deletions

View File

@ -203,4 +203,24 @@ jobs:
path: ~/.npm
key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-lint-${{ env.cache-name }}-
- run: npm run create:guide
- run: npm run create:guide
- name: checkout
uses: actions/checkout@v2
- name: save current date
run: |
# do some operation that changes a file in the git repo
date > time.txt
- name: setup git config
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: commit
run: |
# Stage the file, commit and push
git add time.txt
git commit -m "new date commit"
git push origin master

View File

@ -19,4 +19,4 @@ ganache*
.editorconfig
.eslintrc
SQUID_INTERFACE.md
CodeExamples.md