chore(deps): bump send and express in /docsite/website #180
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: e2e tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.17 | |
- name: Set up Terraform | |
uses: hashicorp/setup-terraform@v1 | |
with: | |
terraform_version: 1.0.5 | |
terraform_wrapper: false | |
- name: Build | |
uses: goreleaser/goreleaser-action@v2 | |
with: | |
version: 1.5.0 | |
args: release --snapshot --skip-validate --skip-publish --skip-sign -f .goreleaser-e2e-build.yml | |
- name: Run test | |
run: | | |
make copyplugins | |
make test |