2020-09-08 22:25:16 +00:00
|
|
|
name: Deploy Contract
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-06-09 08:11:23 +00:00
|
|
|
- main
|
2020-09-08 22:25:16 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
cleanup-runs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: rokroskar/workflow-run-cleanup-action@master
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
2021-06-09 08:11:23 +00:00
|
|
|
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/main'"
|
2020-09-08 22:25:16 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-05-12 10:39:54 +00:00
|
|
|
- uses: actions/checkout@v2.3.4
|
2020-09-08 22:25:16 +00:00
|
|
|
- name: Use Node.js
|
2021-07-21 11:38:04 +00:00
|
|
|
uses: actions/setup-node@v2.3.0
|
2020-09-08 22:25:16 +00:00
|
|
|
with:
|
|
|
|
node-version: '12.x'
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
2021-07-05 11:31:44 +00:00
|
|
|
- uses: technote-space/get-diff-action@v4.2
|
2020-09-08 22:25:16 +00:00
|
|
|
id: git_diff
|
|
|
|
with:
|
|
|
|
SUFFIX_FILTER: |
|
|
|
|
.go
|
|
|
|
.mod
|
|
|
|
.sum
|
|
|
|
.sol
|
|
|
|
- name: Test contract
|
|
|
|
run: |
|
|
|
|
sudo make contract-tools
|
|
|
|
sudo make test-contract
|
|
|
|
if: "env.GIT_DIFF != ''"
|