2024-01-22 22:57:21 +00:00
|
|
|
name: Deploy Contract
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2024-01-22 23:14:05 +00:00
|
|
|
node-version: '20.x'
|
2024-01-22 22:57:21 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Test contract
|
|
|
|
run: |
|
|
|
|
sudo make contract-tools
|
|
|
|
sudo make test-contract
|