File tree Expand file tree Collapse file tree 6 files changed +12588
-14610
lines changed Expand file tree Collapse file tree 6 files changed +12588
-14610
lines changed Original file line number Diff line number Diff line change
1
+ name : " test"
2
+
3
+ on : pull_request
4
+
5
+ jobs :
6
+ build : # make sure build/ci work properly
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+
11
+ - uses : actions/setup-node@v2
12
+ with :
13
+ cache : yarn
14
+
15
+ - run : yarn
16
+
17
+ - name : lint
18
+ run : |
19
+ yarn lint
20
+ yarn format-check
21
+
22
+ - name : build
23
+ run : yarn build
24
+
25
+ - name : Integration test - get token
26
+ id : my-app
27
+ uses : ./
28
+ with :
29
+ app_id : ${{ secrets.INTEGRATION_TEST_APP_ID }}
30
+ private_key : ${{ secrets.INTEGRATION_TEST_APP_PRIVATE_KEY }}
31
+
32
+ - name : Integration test - checkout private repo
33
+ uses : actions/checkout@v2
34
+ with :
35
+ repository : getsentry/action-github-app-token-test
36
+ token : ${{ steps.my-app.outputs.token }}
Original file line number Diff line number Diff line change 12
12
13
13
Build the typescript and package it for distribution
14
14
``` bash
15
- $ yarn build
15
+ $ yarn dist
16
16
```
17
17
18
18
## Usage
You can’t perform that action at this time.
0 commit comments