ci: migrate runs-on to Twilio runner labels + SHA-pin actions #9
This file contains hidden or 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: [v3.0] | |
| pull_request: | |
| branches: [v3.0] | |
| workflow_dispatch: | |
| inputs: | |
| e2e_tests_ref: | |
| description: 'Branch or ref of sdk-e2e-tests to use' | |
| required: false | |
| default: 'main' | |
| jobs: | |
| e2e-tests: | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} | |
| runs-on: ubuntu-latest-large | |
| steps: | |
| - name: Checkout SDK | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| path: sdk | |
| - name: Checkout sdk-e2e-tests | |
| uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| with: | |
| repository: segmentio/sdk-e2e-tests | |
| ref: ${{ inputs.e2e_tests_ref || 'main' }} | |
| token: ${{ secrets.E2E_TESTS_TOKEN }} | |
| path: sdk-e2e-tests | |
| - name: Setup Go | |
| uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5 | |
| with: | |
| go-version-file: sdk/go.mod | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: '20' | |
| - name: Build e2e-cli | |
| working-directory: sdk/e2e-cli | |
| run: go build -o e2e-cli-bin ./... | |
| - name: Run E2E tests | |
| working-directory: sdk-e2e-tests | |
| run: | | |
| ./scripts/run-tests.sh \ | |
| --sdk-dir "${{ github.workspace }}/sdk/e2e-cli" \ | |
| --cli "${{ github.workspace }}/sdk/e2e-cli/e2e-cli-bin" | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
| with: | |
| name: e2e-test-results | |
| path: sdk-e2e-tests/test-results/ | |
| if-no-files-found: ignore |