Skip to content

Commit 6e5f865

Browse files
committed
set up publishing to npm
1 parent 10a1a2e commit 6e5f865

File tree

18 files changed

+2531
-1452
lines changed

18 files changed

+2531
-1452
lines changed

.buildkite/pipeline.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
steps:
2-
- name: ":mocha: Test"
3-
command: npm test
2+
- name: ":vitest: Test"
3+
command: npx vitest --run
44
plugins:
55
- docker-compose#v4.16.0:
6-
config: test/docker-compose.yml
7-
run: tests
6+
run: app
7+
- name: ":prettier: Prettier"
8+
command: npx prettier . --check
9+
plugins:
10+
- docker-compose#v4.16.0:
11+
run: app

.github/CODE_OF_CONDUCT.md

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# Contributor Covenant Code of Conduct
2+
3+
## Our Pledge
4+
5+
We as members, contributors, and leaders pledge to make participation in our
6+
community a harassment-free experience for everyone, regardless of age, body
7+
size, visible or invisible disability, ethnicity, sex characteristics, gender
8+
identity and expression, level of experience, education, socio-economic status,
9+
nationality, personal appearance, race, caste, color, religion, or sexual
10+
identity and orientation.
11+
12+
We pledge to act and interact in ways that contribute to an open, welcoming,
13+
diverse, inclusive, and healthy community.
14+
15+
## Our Standards
16+
17+
Examples of behavior that contributes to a positive environment for our
18+
community include:
19+
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
24+
and learning from the experience
25+
- Focusing on what is best not just for us as individuals, but for the overall
26+
community
27+
28+
Examples of unacceptable behavior include:
29+
30+
- The use of sexualized language or imagery, and sexual attention or advances of
31+
any kind
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email address,
35+
without their explicit permission
36+
- Other conduct which could reasonably be considered inappropriate in a
37+
professional setting
38+
39+
## Enforcement Responsibilities
40+
41+
Community leaders are responsible for clarifying and enforcing our standards of
42+
acceptable behavior and will take appropriate and fair corrective action in
43+
response to any behavior that they deem inappropriate, threatening, offensive,
44+
or harmful.
45+
46+
Community leaders have the right and responsibility to remove, edit, or reject
47+
comments, commits, code, wiki edits, issues, and other contributions that are
48+
not aligned to this Code of Conduct, and will communicate reasons for moderation
49+
decisions when appropriate.
50+
51+
## Scope
52+
53+
This Code of Conduct applies within all community spaces, and also applies when
54+
an individual is officially representing the community in public spaces.
55+
Examples of representing our community include using an official e-mail address,
56+
posting via an official social media account, or acting as an appointed
57+
representative at an online or offline event.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported to the community leaders responsible for enforcement at
63+
64+
All complaints will be reviewed and investigated promptly and fairly.
65+
66+
All community leaders are obligated to respect the privacy and security of the
67+
reporter of any incident.
68+
69+
## Enforcement Guidelines
70+
71+
Community leaders will follow these Community Impact Guidelines in determining
72+
the consequences for any action they deem in violation of this Code of Conduct:
73+
74+
### 1. Correction
75+
76+
**Community Impact**: Use of inappropriate language or other behavior deemed
77+
unprofessional or unwelcome in the community.
78+
79+
**Consequence**: A private, written warning from community leaders, providing
80+
clarity around the nature of the violation and an explanation of why the
81+
behavior was inappropriate. A public apology may be requested.
82+
83+
### 2. Warning
84+
85+
**Community Impact**: A violation through a single incident or series of
86+
actions.
87+
88+
**Consequence**: A warning with consequences for continued behavior. No
89+
interaction with the people involved, including unsolicited interaction with
90+
those enforcing the Code of Conduct, for a specified period of time. This
91+
includes avoiding interactions in community spaces as well as external channels
92+
like social media. Violating these terms may lead to a temporary or permanent
93+
ban.
94+
95+
### 3. Temporary Ban
96+
97+
**Community Impact**: A serious violation of community standards, including
98+
sustained inappropriate behavior.
99+
100+
**Consequence**: A temporary ban from any sort of interaction or public
101+
communication with the community for a specified period of time. No public or
102+
private interaction with the people involved, including unsolicited interaction
103+
with those enforcing the Code of Conduct, is allowed during this period.
104+
Violating these terms may lead to a permanent ban.
105+
106+
### 4. Permanent Ban
107+
108+
**Community Impact**: Demonstrating a pattern of violation of community
109+
standards, including sustained inappropriate behavior, harassment of an
110+
individual, or aggression toward or disparagement of classes of individuals.
111+
112+
**Consequence**: A permanent ban from any sort of public interaction within the
113+
community.
114+
115+
## Attribution
116+
117+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118+
version 2.1, available at
119+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120+
121+
Community Impact Guidelines were inspired by
122+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123+
124+
For answers to common questions about this code of conduct, see the FAQ at
125+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126+
[https://www.contributor-covenant.org/translations][translations].
127+
128+
[homepage]: https://www.contributor-covenant.org
129+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130+
[Mozilla CoC]: https://github.com/mozilla/diversity
131+
[FAQ]: https://www.contributor-covenant.org/faq
132+
[translations]: https://www.contributor-covenant.org/translations

.github/CONTRIBUTING.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# Contributing to the repo
1+
# Contributing
22

3-
1. Fork this repo
4-
1. Create a feature branch with a nice name (`git checkout -b my-new-feature`)
5-
1. Write your code!
6-
1. Commit your changes (`git commit -am 'Add some feature'`)
7-
- In an ideal world we have [atomic commits](https://www.pauline-vos.nl/atomic-commits/) and use [Tim Pope-style commit messages](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), but so long as it's clear what's happening in your PR, that's fine. We try to not be super persnickety about these things.
8-
1. Push to your branch (`git push origin my-new-feature`)
9-
1. Create a pull request for your branch. Make sure that your PR has a nice description, and that it's linked to any relevant issues.
3+
1. Create a fork of this repository to commit your changes to.
4+
1. Make your changes, and include some [tests](#Tests).
5+
1. Create a pull request, and include a description of your changes. Ideally, include a link to the relevant documentation in the [Buildkite Pipelines docs](https://buildkite.com/docs/pipelines/configuration-overview).
106

11-
Our objective is to have no PR wait more than a week for some sort of interaction from us -- this might be a review, or it might be a "I'm going to come back to this and review it a bit later". This isn't a guarantee though, and sometimes other work might get in the way of reviewing opensource contributions. If we're really dragging our feet on reviewing a PR, please feel free to ping us through GitHub or Slack, or get in touch with [email protected], and they can bug us to get things done :)
7+
## Tests
8+
9+
The schema is tested by validating example schemas (see [`test/valid-pipelines`](../test/valid-pipelines/)). Please extend these or add a new one to verify your changes.
10+
11+
## Review
12+
13+
Our objective is to have no pull request wait more than a week for some sort of interaction from us — this might be a review, or it might be a "I'm going to come back to this and review it a bit later". This isn't a guarantee though, and sometimes other work might get in the way of reviewing open source contributions. If we're really dragging our feet on reviewing a PR, please feel free to ping us through GitHub or Slack, or get in touch with [email protected], and they can bug us to get things done :smile:

.github/screenshot.png

-25.6 KB
Loading

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
test/node_modules
1+
node_modules

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM node:18
22

3-
WORKDIR /app/test
3+
WORKDIR /app
44

5-
COPY package.json package-lock.json /app/test/
5+
COPY package.json package-lock.json /app/
66
RUN npm install
77

8-
COPY . /app/test
8+
COPY . /app
99

1010
CMD ["npm", "test"]
File renamed without changes.

README.md

Lines changed: 91 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,107 @@
1-
# Buildkite Pipeline JSON Schema [![Build status](https://badge.buildkite.com/67d936a0910be01a8851c5e97156d54ac4d7ee39b7900b682b.svg)](https://buildkite.com/buildkite/pipeline-schema)
1+
# Buildkite Pipeline JSON Schema
22

3-
A [JSON Schema](https://json-schema.org) for Buildkite’s [pipeline file format](https://buildkite.com/docs/pipelines/defining-steps), covering all current, documented options. Useful for linting/validating your pipeline.yml files using tools like [YAML VSCode Extension by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml).
3+
[![Build status](https://badge.buildkite.com/67d936a0910be01a8851c5e97156d54ac4d7ee39b7900b682b.svg)](https://buildkite.com/buildkite/pipeline-schema)
44

5-
![Screenshot of YAML VSCode Extension by Red Hat](vscode-screenshot.png)
5+
A [JSON Schema](https://json-schema.org) for Buildkite’s [pipeline file format](https://buildkite.com/docs/pipelines/defining-steps), covering all current, documented options.
66

7-
See:
7+
![Screenshot of YAML VSCode Extension by Red Hat](./.github/screenshot.png)
88

9-
* [schema.json](schema.json)
10-
* [test/valid-pipelines](test/valid-pipelines)
9+
See
1110

12-
## Testing
11+
- [Schema](schema.json)
12+
- [Example valid pipelines](test/valid-pipelines)
1313

14-
If you have [Node 10+](https://nodejs.org/en/) installed:
14+
## Usage
1515

16-
```shell
17-
cd test
18-
npm install && npm test
16+
### npm package
17+
18+
The schema is provided as a [package on npm](https://www.npmjs.com/package/buildkite-pipeline-schema).
19+
20+
You can install it in your project:
21+
22+
```sh
23+
npm i buildkite-json-schema
1924
```
2025

21-
Or you can use [Docker Compose](https://docs.docker.com/compose/):
26+
```js
27+
// CommonJS
28+
const schema = require("buildkite-pipeline-schema");
2229

23-
```shell
24-
cd test
25-
docker-compose build && docker-compose run --rm tests
30+
// ESM
31+
import schema from "buildkite-json-schema" assert { type: "json" };
32+
```
33+
34+
Or use it with via a CDN:
35+
36+
```json
37+
{
38+
"$schema": "https://unpkg.com/buildkite-pipeline-schema@latest/schema.json"
39+
// ...
40+
}
41+
```
42+
43+
### Editor integration
44+
45+
You can lint and validate your `pipeline.yml` files using an editor extension that supports [RedHat YAML Language Server](https://github.com/redhat-developer/yaml-language-server#clients).
46+
47+
#### VSCode
48+
49+
Install the [YAML VSCode Extension by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml).
50+
51+
If the schema isn't picked up automatically, click _No JSON Schema_ in the status bar from your `pipeline.yml`, and select _Buildkite_.
52+
53+
### Install with npm
54+
55+
```sh
56+
npm install buildkite-pipeline-schema
57+
```
58+
59+
## Development
60+
61+
### Testing
62+
63+
With [Node 16+](https://nodejs.org/en/) installed,i nstall dependencies:
64+
65+
```sh
66+
npm install
67+
```
68+
69+
Run tests:
70+
71+
```sh
72+
npm test
73+
```
74+
75+
Alternatively, tests can be run with [Docker Compose](https://docs.docker.com/compose/):
76+
77+
```sh
78+
docker-compose run --build --rm app
2679
```
2780

2881
## Contributing
2982

30-
See [contributing.md](./contributing.md)
83+
Bug reports and pull requests are welcome, see [CONTRIBUTING.md](./.github/CONTRIBUTING.md).
84+
85+
### Contributors
86+
87+
Many thanks to our fine contributors!
88+
89+
A full list can be found [here](https://github.com/buildkite/pipeline-schema/graphs/contributors), but you're all amazing, and we greatly appreciate your input.
90+
91+
## Releasing
92+
93+
```sh
94+
# Version bump the code, tag and push
95+
npm version [major/minor/patch]
96+
git push && git push --tags
97+
98+
# Publish to the NPM registry
99+
npm publish
100+
101+
# Create a new GitHub release
102+
open "https://github.com/buildkite/pipeline-schema/releases"
103+
```
31104

32-
## Contributors
105+
## License
33106

34-
Many thanks to our fine contributors! A full list can be found [here](https://github.com/buildkite/pipeline-schema/graphs/contributors), but you're all amazing, and we greatly appreciate your input ❤️
107+
The package is available as open source under the terms of the [MIT License](./LICENSE.md).

docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1+
version: "3.6"
12
services:
2-
tests:
3+
app:
34
build: .
4-
volumes:
5-
- "../schema.json:/app/schema.json"

0 commit comments

Comments
 (0)