Chore: Run fronted unit tests + linting/typecheck against enterprise (#104479)
* run unit tests + linting/typecheck against enterprise * update permissions * kick CI * keep job names the same
This commit is contained in:
@@ -6,6 +6,10 @@ on:
|
|||||||
- main
|
- main
|
||||||
- release-*.*.*
|
- release-*.*.*
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-frontend-verify-i18n:
|
lint-frontend-verify-i18n:
|
||||||
name: Verify i18n
|
name: Verify i18n
|
||||||
@@ -30,6 +34,9 @@ jobs:
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
lint-frontend-prettier:
|
lint-frontend-prettier:
|
||||||
|
# Run this workflow only for PRs from forks; if it gets merged into `main` or `release-*`,
|
||||||
|
# the `lint-frontend-prettier-enterprise` workflow will run instead
|
||||||
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true
|
||||||
name: Lint
|
name: Lint
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -42,7 +49,29 @@ jobs:
|
|||||||
- run: yarn install --immutable --check-cache
|
- run: yarn install --immutable --check-cache
|
||||||
- run: yarn run prettier:check
|
- run: yarn run prettier:check
|
||||||
- run: yarn run lint
|
- run: yarn run lint
|
||||||
|
lint-frontend-prettier-enterprise:
|
||||||
|
# Run this workflow for non-PR events (like pushes to `main` or `release-*`) OR for internal PRs (PRs not from forks)
|
||||||
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false
|
||||||
|
name: Lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version-file: '.nvmrc'
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
- name: Setup Enterprise
|
||||||
|
uses: ./.github/actions/setup-enterprise
|
||||||
|
with:
|
||||||
|
github-app-name: 'grafana-ci-bot'
|
||||||
|
- run: yarn install --immutable --check-cache
|
||||||
|
- run: yarn run prettier:check
|
||||||
|
- run: yarn run lint
|
||||||
lint-frontend-typecheck:
|
lint-frontend-typecheck:
|
||||||
|
# Run this workflow only for PRs from forks; if it gets merged into `main` or `release-*`,
|
||||||
|
# the `lint-frontend-typecheck-enterprise` workflow will run instead
|
||||||
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true
|
||||||
name: Typecheck
|
name: Typecheck
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@@ -54,6 +83,24 @@ jobs:
|
|||||||
cache-dependency-path: 'yarn.lock'
|
cache-dependency-path: 'yarn.lock'
|
||||||
- run: yarn install --immutable --check-cache
|
- run: yarn install --immutable --check-cache
|
||||||
- run: yarn run typecheck
|
- run: yarn run typecheck
|
||||||
|
lint-frontend-typecheck-enterprise:
|
||||||
|
# Run this workflow for non-PR events (like pushes to `main` or `release-*`) OR for internal PRs (PRs not from forks)
|
||||||
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false
|
||||||
|
name: Typecheck
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version-file: '.nvmrc'
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
- name: Setup Enterprise
|
||||||
|
uses: ./.github/actions/setup-enterprise
|
||||||
|
with:
|
||||||
|
github-app-name: 'grafana-ci-bot'
|
||||||
|
- run: yarn install --immutable --check-cache
|
||||||
|
- run: yarn run typecheck
|
||||||
lint-frontend-betterer:
|
lint-frontend-betterer:
|
||||||
name: Betterer
|
name: Betterer
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -6,8 +6,15 @@ on:
|
|||||||
- main
|
- main
|
||||||
- release-*.*.*
|
- release-*.*.*
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
id-token: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
frontend-unit-tests:
|
frontend-unit-tests:
|
||||||
|
# Run this workflow only for PRs from forks; if it gets merged into `main` or `release-*`,
|
||||||
|
# the `frontend-unit-tests-enterprise` workflow will run instead
|
||||||
|
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true
|
||||||
runs-on: ubuntu-latest-8-cores
|
runs-on: ubuntu-latest-8-cores
|
||||||
name: "Unit tests (${{ matrix.chunk }} / 8)"
|
name: "Unit tests (${{ matrix.chunk }} / 8)"
|
||||||
strategy:
|
strategy:
|
||||||
@@ -27,3 +34,30 @@ jobs:
|
|||||||
TEST_MAX_WORKERS: 2
|
TEST_MAX_WORKERS: 2
|
||||||
TEST_SHARD: ${{ matrix.chunk }}
|
TEST_SHARD: ${{ matrix.chunk }}
|
||||||
TEST_SHARD_TOTAL: 8
|
TEST_SHARD_TOTAL: 8
|
||||||
|
|
||||||
|
frontend-unit-tests-enterprise:
|
||||||
|
# Run this workflow for non-PR events (like pushes to `main` or `release-*`) OR for internal PRs (PRs not from forks)
|
||||||
|
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false
|
||||||
|
runs-on: ubuntu-latest-8-cores
|
||||||
|
name: "Unit tests (${{ matrix.chunk }} / 8)"
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
chunk: [1, 2, 3, 4, 5, 6, 7, 8]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version-file: '.nvmrc'
|
||||||
|
cache: 'yarn'
|
||||||
|
cache-dependency-path: 'yarn.lock'
|
||||||
|
- name: Setup Enterprise
|
||||||
|
uses: ./.github/actions/setup-enterprise
|
||||||
|
with:
|
||||||
|
github-app-name: 'grafana-ci-bot'
|
||||||
|
- run: yarn install --immutable --check-cache
|
||||||
|
- run: yarn run test:ci
|
||||||
|
env:
|
||||||
|
TEST_MAX_WORKERS: 2
|
||||||
|
TEST_SHARD: ${{ matrix.chunk }}
|
||||||
|
TEST_SHARD_TOTAL: 8
|
||||||
|
|||||||
Reference in New Issue
Block a user