Skip to content

Commit 535128d

Browse files
Merge branch 'master' into github-integration
2 parents 34624b9 + fe889a1 commit 535128d

File tree

6 files changed

+66
-21
lines changed

6 files changed

+66
-21
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"

.github/workflows/deploy.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Gatsby Publish
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: enriikke/gatsby-gh-pages-action@v2
14+
with:
15+
access-token: ${{ secrets.DEPLOY_KEY }}

.github/workflows/test-suite.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Test suite
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
# The branches below must be a subset of the branches above
8+
branches: [master]
9+
10+
jobs:
11+
update:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
16+
- name: Get yarn cache directory path
17+
id: yarn-cache-dir-path
18+
run: echo "::set-output name=dir::$(yarn cache dir)"
19+
20+
- uses: actions/cache@v2
21+
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
22+
with:
23+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
24+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
25+
restore-keys: |
26+
${{ runner.os }}-yarn-
27+
28+
- name: Set Node.js
29+
uses: actions/setup-node@master
30+
with:
31+
node-version: 10.x
32+
33+
- name: Install dependencies
34+
run: yarn install
35+
36+
- name: Lint
37+
run: yarn run lint
38+
39+
- name: Build
40+
run: yarn run build

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"gatsby-plugin-sass": "^2.1.10",
1818
"gatsby-plugin-sharp": "^2.2.13",
1919
"gatsby-plugin-sitemap": "^2.2.7",
20-
"gatsby-plugin-slug": "^1.1.0",
20+
"gatsby-plugin-slug": "^1.1.1",
2121
"gatsby-plugin-sri": "^1.0.11",
2222
"gatsby-remark-autolink-headers": "^2.1.5",
2323
"gatsby-remark-images": "^3.1.13",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6638,10 +6638,10 @@ gatsby-plugin-sitemap@^2.2.7:
66386638
pify "^3.0.0"
66396639
sitemap "^1.13.0"
66406640

6641-
gatsby-plugin-slug@^1.1.0:
6642-
version "1.1.0"
6643-
resolved "https://registry.yarnpkg.com/gatsby-plugin-slug/-/gatsby-plugin-slug-1.1.0.tgz#53c01b9ed6d435df3c498d18ab2c508e62b0ded8"
6644-
integrity sha512-whXudY92TYxtkdZdFztcXGDKqRkFfOKd3yFsceLw9+kuqEIBAgi1TBkDs+MRiO0cFjc3+czwy/AillcwU16ouw==
6641+
gatsby-plugin-slug@^1.1.1:
6642+
version "1.1.1"
6643+
resolved "https://registry.yarnpkg.com/gatsby-plugin-slug/-/gatsby-plugin-slug-1.1.1.tgz#2628c8256909b9c166717096ec7e701a91392b67"
6644+
integrity sha512-7S0vz/nTcTsgpKims8zNgUd4pNcAYjsuUKUzylvPM1TZVUsEsbB9kzQ8vx4uR4Fo3DSciVoynj+1Sn29fZXx7w==
66456645

66466646
gatsby-plugin-sri@^1.0.11:
66476647
version "1.1.0"

0 commit comments

Comments
 (0)