-
Notifications
You must be signed in to change notification settings - Fork 1.3k
97 lines (73 loc) · 2.2 KB
/
nodejs.yml
File metadata and controls
97 lines (73 loc) · 2.2 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
name: Node.js CI
on: [push, pull_request]
jobs:
validation:
name: Validation docs
runs-on: ubuntu-latest
steps:
- name: Checkout Docs
uses: actions/checkout@v4
- uses: ./.github/actions/setup-env
- name: Validation
run: npm run validate-docs
- name: Archive internal-tools artifacts
uses: actions/upload-artifact@v4
with:
name: internal-tools-artifacts-validation
path: artifacts/internal-tools/
retention-days: 7
build:
name: ContentMap
runs-on: ubuntu-latest
steps:
- name: Checkout Docs
uses: actions/checkout@v4
- uses: ./.github/actions/setup-env
- name: Generate ContentMaps
run: npm run generate-content-map
- name: Archive internal-tools artifacts
uses: actions/upload-artifact@v4
with:
name: internal-tools-artifacts-build
path: artifacts/internal-tools/
retention-days: 7
link:
runs-on: ubuntu-latest
name: Check links
steps:
- name: Checkout Docs
uses: actions/checkout@v4
- uses: ./.github/actions/setup-env
- name: Generate ContentMaps
run: npm run generate-content-map
- name: Check links
run: npm run validate-links
- name: Archive internal-tools artifacts
uses: actions/upload-artifact@v4
with:
name: internal-tools-artifacts-link
path: artifacts/internal-tools/
retention-days: 7
# modules:
# runs-on: ubuntu-latest
# name: Check modules guide
# steps:
# - name: Check modules guide
# run: npm run validate-modules-guide
# - name: Archive internal-tools artifacts
# uses: actions/upload-artifact@v4
# with:
# name: internal-tools-artifacts
# path: artifacts/internal-tools/
# retention-days: 7
merge-artifacts:
runs-on: ubuntu-latest
needs: [ validation, build, link ]
steps:
- name: Merge artifacts
uses: actions/upload-artifact/merge@v4
continue-on-error: true
with:
name: internal-tools-artifacts
pattern: internal-tools-artifacts-*
delete-merged: true