Skip to content

Commit b2742e3

Browse files
committed
Merge branch 'main' into moreDetailAboutArgumentNameUniquess
2 parents 5350f28 + 45ffddb commit b2742e3

23 files changed

+9865
-3824
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
Before creating your issue:
44

5-
* Have a question? Find community resources at https://graphql.org/community/
5+
- Have a question? Find community resources at https://graphql.org/community/
66

7-
* Find an editing mistake? Create a Pull Request with the edited fix! The Github UI allows you to edit files directly, find the source files at: https://github.com/graphql/graphql-spec/tree/master/spec
7+
- Find an editing mistake? Create a Pull Request with the edited fix! The Github
8+
UI allows you to edit files directly, find the source files at:
9+
https://github.com/graphql/graphql-spec/tree/master/spec
810

9-
* Improvements to documentation? Head over to https://github.com/graphql/graphql.github.io
11+
- Improvements to documentation? Head over to
12+
https://github.com/graphql/graphql.github.io
1013

11-
* Feature request? First read https://github.com/graphql/graphql-spec/blob/master/CONTRIBUTING.md and prefer creating a Pull Request!
14+
- Feature request? First read
15+
https://github.com/graphql/graphql-spec/blob/master/CONTRIBUTING.md and prefer
16+
creating a Pull Request!

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
!!! IMPORTANT !!!
22

3-
Please Read https://github.com/graphql/graphql-spec/blob/master/CONTRIBUTING.md before creating a Pull Request.
3+
Please Read https://github.com/graphql/graphql-spec/blob/master/CONTRIBUTING.md
4+
before creating a Pull Request.

.github/workflows/ci.yml

Lines changed: 28 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,51 @@
11
name: CI
2+
23
on:
34
push:
45
branches:
56
- main
67
pull_request:
7-
branches:
8-
- main
8+
99
jobs:
10-
test:
10+
test-spelling:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions/setup-node@v1
15-
with:
16-
node-version: '16.x'
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
15+
- run: npm ci
16+
- run: npm run test:spelling
17+
test-format:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v3
21+
- uses: actions/setup-node@v3
1722
- run: npm ci
18-
- run: npm test
23+
- run: npm run test:format
24+
test-build:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v3
28+
- uses: actions/setup-node@v3
29+
- run: npm ci
30+
- run: npm run test:build
1931
publish:
2032
if: github.ref == 'refs/heads/main'
21-
needs: test
33+
needs:
34+
- test-spelling
35+
- test-format
36+
- test-build
2237
runs-on: ubuntu-latest
2338
steps:
24-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
2540
with:
2641
fetch-depth: 0
27-
- uses: actions/setup-node@v1
28-
with:
29-
node-version: '16.x'
42+
- uses: actions/setup-node@v3
3043
- run: npm ci
3144
- run: npm run build
3245
- uses: peaceiris/actions-gh-pages@v3
3346
with:
3447
github_token: ${{ secrets.GITHUB_TOKEN }}
3548
keep_files: true
3649
cname: spec.graphql.org
37-
user_name: 'github-actions[bot]'
38-
user_email: 'github-actions[bot]@users.noreply.github.com'
50+
user_name: "github-actions[bot]"
51+
user_email: "github-actions[bot]@users.noreply.github.com"

.prettierignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
*.swp
2+
*~
3+
.*.haste_cache.*
4+
.DS_Store
5+
npm-debug.log
6+
/build
7+
/changelogs
8+
/out
9+
/gh-pages
10+
/node_modules
11+
/package.json

0 commit comments

Comments
 (0)