-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
|
||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
|
||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
name: Custom issue template | ||
about: Describe this issue template's purpose here. | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: 'Tests: `nvm install-latest-npm`' | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
nodes: | ||
name: 'nvm install-latest-npm' | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: | ||
- "11" | ||
- "10" | ||
- "9" | ||
- "9.2" | ||
- "9.1" | ||
- "9.0" | ||
- "8" | ||
- "7" | ||
- "6" | ||
- "6.1" | ||
- "5" | ||
- "5.9" | ||
- "4" | ||
- "4.6" | ||
- "4.5" | ||
- "4.4" | ||
- "3" | ||
- "2" | ||
- "1" | ||
- "0.12" | ||
- "0.10" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ljharb/actions/node/run@main | ||
name: 'nvm install-latest-npm' | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
skip-ls-check: true | ||
skip-install: true | ||
shell-command: 'npm --version' | ||
|
||
node: | ||
name: 'nvm install-latest-npm' | ||
needs: [nodes] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: 'echo tests completed' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: 'Tests: linting' | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
eclint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ljharb/actions/node/run@main | ||
name: 'npm install && npm run eclint' | ||
with: | ||
node-version: 'lts/*' | ||
command: 'eclint' | ||
|
||
dockerfile_lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ljharb/actions/node/run@main | ||
name: 'npm install && npm run dockerfile_lint' | ||
with: | ||
node-version: 'lts/*' | ||
command: 'dockerfile_lint' | ||
|
||
doctoc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: ljharb/actions/node/run@main | ||
name: 'npm install && npm run doctoc' | ||
with: | ||
node-version: 'lts/*' | ||
command: "doctoc:check" | ||
|
||
test_naming: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: check tests filenames | ||
run: ./rename_test.sh --check |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This is a basic workflow that is manually triggered | ||
name: Gatsby Publish | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: enriikke/gatsby-gh-pages-action@v2 | ||
with: | ||
access-token: ${{ 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 }} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: 'Tests: release process' | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: "14" | ||
- run: npm install | ||
- name: Configure git | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git fetch --unshallow --tags -f || git fetch --tags -f | ||
- name: Attempt `make release` process | ||
run: echo proceed | make TAG=99.99.99 release | ||
env: | ||
GIT_EDITOR: "sed -i '1 s/^/99.99.99 make release test/'" | ||
- name: Ensure tag is created | ||
run: git tag | grep v99.99.99 |