diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-08-04 13:20:58 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-08-04 13:20:58 +0200 |
commit | a2d4542614c0de460cbb3989069ce2305de9eaf2 (patch) | |
tree | d90e83585cef49a6bb8245fbec6b11ebb5b4f3a6 /.github | |
parent | 903fdfcba322fc93a215a91a521e2879b78b0a8c (diff) | |
parent | ce957f25b7d234256d9be8c61f5ec5f603d6a443 (diff) |
chore: handle merge
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..886189e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,33 @@ +--- +# File : ci.yml + +name: 'ci' +on: + push: +defaults: + run: + shell: 'bash' +jobs: + lint-test-build: + name: '[ci|lint-test-build]' + runs-on: 'ubuntu-18.04' + steps: + - name: '[checkout] ${{ github.repository }} project' + uses: 'actions/checkout@v2' + with: + repository: '${{ github.repository }}' + - name: '[lint]' + run: | + echo TBA some linting + - name: '[test]' + run: | + echo TBA some testing + - name: '[build]' + run: | + git config --global url."https://github.com/".insteadOf ssh://[email protected]/ + git config --global url."https://".insteadOf git:// + git config --global url."https://".insteadOf ssh:// + yarn + yarn build +--- +# End of ci.yml |