This repository was archived by the owner on Nov 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +1537
-6
lines changed
Expand file tree Collapse file tree 3 files changed +1537
-6
lines changed Original file line number Diff line number Diff line change 1+ name : Lint
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+
13+ steps :
14+ - uses : actions/checkout@v2
15+
16+ - name : Lint changelog file
17+ uses : docker://avtodev/markdown-lint:v1
18+ with :
19+ rules : " /lint/rules/changelog.js"
20+ config : " /lint/config/changelog.yml"
21+ args : " ./CHANGELOG.md"
22+
23+ - name : Lint markdown files
24+ uses : docker://avtodev/markdown-lint:v1
25+ with :
26+ args : " ./**/*.md -i ./CHANGELOG.md"
27+
28+ - name : Install dependencies
29+ run : npm ci
30+
31+ - name : Lint
32+ run : npm run lint
33+
34+ - name : Build 🔧
35+ run : npm run compile
36+
37+ - name : Generate Documentation 📜
38+ run : npm run docs
39+
40+ - name : Test Docs
41+ run : npm run docs-test
Original file line number Diff line number Diff line change 1+ # CHANGELOG
2+
3+ All notable changes to this project will be documented in this file.
4+
5+ ## Unreleased
6+
7+ ## v0.17.0
8+
9+ Versions previous to ` 0.18.0 ` were developed in another repository.
10+ To see previous changelog entries see the [ CHANGELOG.md] ( https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md ) .
You can’t perform that action at this time.
0 commit comments