gxthrj commented on a change in pull request #1421: URL: https://github.com/apache/apisix-dashboard/pull/1421#discussion_r569979223
########## File path: .github/workflows/make-build.yaml ########## @@ -0,0 +1,31 @@ +name: make build + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + web-e2e: + name: Frontend e2e test + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup Node.js environment + uses: actions/[email protected] + with: + node-version: 14.x + + - name: Setup golang environment + uses: actions/[email protected] + with: + go-version: '1.13' + + - name: make build + run: make build Review comment: If an error occurs, it will fail ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
