-
Notifications
You must be signed in to change notification settings - Fork 11
34 lines (32 loc) · 783 Bytes
/
internal.yml
File metadata and controls
34 lines (32 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: internal
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
e2e:
runs-on: ubuntu-latest
strategy:
matrix:
file:
- common
- all-opt-out
- no-docker
- no-e2e
- no-otel
- no-stripe
- no-sample-code
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-node
- if: ${{ github.ref_name == 'main' }}
run: echo "IS_MAIN_BRANCH=true" >> $GITHUB_ENV
- run: pnpm exec playwright install chromium
- run: cd ./.internal/tests && make run-${{ matrix.file }}
env:
# to fetch this repo via CLI on main branch
IS_MAIN_BRANCH: ${{ env.IS_MAIN_BRANCH }}
IS_LOCAL: false