-
Notifications
You must be signed in to change notification settings - Fork 383
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (27 loc) · 841 Bytes
/
action.yml
File metadata and controls
27 lines (27 loc) · 841 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
name: Plugin Tests
description: Run plugin tests
runs:
using: composite
steps:
- uses: ./.github/actions/dd-sts-api-key
id: dd-sts
- uses: ./.github/actions/testagent/start
- uses: ./.github/actions/node/oldest-maintenance-lts
- uses: ./.github/actions/install
- run: yarn test:plugins:ci
shell: bash
- uses: ./.github/actions/node/latest
- run: yarn test:plugins:ci
shell: bash
- uses: ./.github/actions/coverage
with:
flags: plugins-${{ github.job }}
dd_api_key: ${{ steps.dd-sts.outputs.api_key }}
- if: always()
uses: ./.github/actions/testagent/logs
with:
suffix: test-${{ github.job }}
- uses: ./.github/actions/push_to_test_optimization
if: "!cancelled()"
with:
dd_api_key: ${{ steps.dd-sts.outputs.api_key }}