File tree Expand file tree Collapse file tree 6 files changed +66
-21
lines changed Expand file tree Collapse file tree 6 files changed +66
-21
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " npm"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " daily"
Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 17
17
"gatsby-plugin-sass" : " ^2.1.10" ,
18
18
"gatsby-plugin-sharp" : " ^2.2.13" ,
19
19
"gatsby-plugin-sitemap" : " ^2.2.7" ,
20
- "gatsby-plugin-slug" : " ^1.1.0 " ,
20
+ "gatsby-plugin-slug" : " ^1.1.1 " ,
21
21
"gatsby-plugin-sri" : " ^1.0.11" ,
22
22
"gatsby-remark-autolink-headers" : " ^2.1.5" ,
23
23
"gatsby-remark-images" : " ^3.1.13" ,
Original file line number Diff line number Diff line change @@ -6638,10 +6638,10 @@ gatsby-plugin-sitemap@^2.2.7:
6638
6638
pify "^3.0.0"
6639
6639
sitemap "^1.13.0"
6640
6640
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 ==
6645
6645
6646
6646
gatsby-plugin-sri@^1.0.11:
6647
6647
version "1.1.0"
You can’t perform that action at this time.
0 commit comments