mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
Adding commit to CI
This commit is contained in:
parent
8b164b9f85
commit
77af85cd3a
22
.github/workflows/ci.yml
vendored
22
.github/workflows/ci.yml
vendored
@ -203,4 +203,24 @@ jobs:
|
|||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-lint-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
|
||||||
restore-keys: ${{ runner.os }}-lint-${{ env.cache-name }}-
|
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
|
@ -19,4 +19,4 @@ ganache*
|
|||||||
.editorconfig
|
.editorconfig
|
||||||
.eslintrc
|
.eslintrc
|
||||||
SQUID_INTERFACE.md
|
SQUID_INTERFACE.md
|
||||||
CodeExamples.md
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user