File tree Expand file tree Collapse file tree 3 files changed +30
-34
lines changed Expand file tree Collapse file tree 3 files changed +30
-34
lines changed Original file line number Diff line number Diff line change 1
- name : Node.js CI
1
+ name : CI
2
2
3
3
on :
4
4
workflow_dispatch :
5
5
push :
6
- branches : [ "main" ]
6
+ branches : ["main"]
7
7
pull_request :
8
- branches : [ "main" ]
8
+ branches : ["main"]
9
9
10
10
jobs :
11
11
build :
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - name : Checkout code
16
- uses : actions/checkout@v3
15
+ - name : Checkout code
16
+ uses : actions/checkout@v3
17
17
18
- - name : Setup Node.js 16
19
- uses : actions/setup-node@v3
20
- with :
21
- node-version : 16
22
- cache : ' npm'
18
+ - name : Setup Node.js 16
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : 16
22
+ cache : " npm"
23
23
24
- - name : Install dependencies
25
- run : npm ci
24
+ - name : Install dependencies
25
+ run : npm ci
26
26
27
- - name : Run linters
28
- run : npm run lint
27
+ - name : Run linters
28
+ run : npm run lint
29
29
30
- - name : Build project
31
- run : npm run build
30
+ - name : Build project
31
+ run : npm run build
Original file line number Diff line number Diff line change @@ -10,23 +10,19 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
- - name : Checkout code
14
- uses : actions/checkout@v3
13
+ - name : Checkout code
14
+ uses : actions/checkout@v3
15
15
16
- - name : Setup Node.js 16
17
- uses : actions/setup-node@v3
18
- with :
19
- node-version : ' 16.x'
20
- cache : ' npm'
21
- registry-url : ' https://registry.npmjs.org/'
16
+ - name : Setup Node.js 16
17
+ uses : actions/setup-node@v3
18
+ with :
19
+ node-version : " 16.x"
20
+ registry-url : " https://registry.npmjs.org"
22
21
23
- - name : Install dependencies
24
- run : npm ci
22
+ - name : Install dependencies
23
+ run : npm ci
25
24
26
- - name : Build
27
- run : npm run build
28
-
29
- - name : Publish Packages
30
- run : npm publish --access public
31
- env :
32
- NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
25
+ - name : Publish Packages
26
+ run : npm publish --access public
27
+ env :
28
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @brooklyn-labs/postgraphile-plugin-remove-foreign-key-fields" ,
3
- "version" : " 1.3.0 " ,
3
+ "version" : " 1.3.1 " ,
4
4
"description" : " PostGraphile plugin that removes all foreign key fields from the GraphQL schema while still allowing foreign relationships to be created. Primary key fields are not removed from the GraphQL schema." ,
5
5
"author" : " Brooklyn Labs" ,
6
6
"license" : " MIT" ,
You can’t perform that action at this time.
0 commit comments