diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index fa612ff..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build -on: - push: - branches: - - main - -jobs: - build: - runs-on: ubuntu-20.04 - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Setup node - uses: actions/setup-node@v2 - with: - node-version: "14.17.0" - - - name: Setup SSH to install dependencies - uses: webfactory/ssh-agent@v0.5.0 - with: - ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - - - name: Install dependencies - run: npm ci - - - name: Build contracts to get the ABIs - run: npm run build - - # TODO - # - name: Run tests - # run: npm test