-
Notifications
You must be signed in to change notification settings - Fork 2
49 lines (49 loc) · 1.26 KB
/
package-listing.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: "GitHub Actions Playground"
on:
workflow_dispatch:
jobs:
get-engines:
name: "Get Engines"
uses: "./.github/workflows/get-engines.yml"
secrets: inherit
output-engines:
runs-on: ubuntu-latest
needs:
- get-engines
env:
nodeVersion: ${{ needs.get-engines.outputs.nodeVersion }}
pnpmVersion: ${{ needs.get-engines.outputs.pnpmVersion }}
steps:
- id: main
name: "Main"
run: |
echo "# Detected Engines" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "* Node Version: ${{ env.nodeVersion }}" >> $GITHUB_STEP_SUMMARY
echo "* PNPM Version: ${{ env.pnpmVersion }}" >> $GITHUB_STEP_SUMMARY
build:
name: "Build"
uses: "./.github/workflows/build.yml"
secrets: inherit
lint:
name: "Linter"
uses: "./.github/workflows/build.yml"
secrets: inherit
with:
lint: true
utest:
name: "Unit Tests"
uses: "./.github/workflows/build.yml"
secrets: inherit
with:
utest: true
itest:
name: "Integration Tests"
uses: "./.github/workflows/build.yml"
secrets: inherit
with:
itest: true
doc:
name: "Generate Documentation"
uses: "./.github/workflows/update-documentation.yml"
secrets: inherit