Skip to content

Refactor workflows #1102

Refactor workflows

Refactor workflows #1102

Workflow file for this run

name: e2e-test
on:
push:
branches:
- master
paths:
- .github/workflows/e2e-test.yaml
- internal/**
- e2e_test/**
- go.*
pull_request:
branches:
- master
paths:
- .github/workflows/e2e-test.yaml
- internal/**
- e2e_test/**
- go.*
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: go.mod
cache-dependency-path: go.sum
- run: make -C e2e_test -j3
- run: git config --global user.email ci@example.com
- run: git config --global user.name ci
- run: make -C e2e_test ci-publish-screenshot
env:
GITHUB_TOKEN: ${{ github.token }}