We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 847634e commit d1dfb47Copy full SHA for d1dfb47
.github/workflows/test.yml
@@ -1,21 +1,22 @@
1
+name: test
2
on: [push]
3
4
jobs:
- demo:
5
+ test:
6
runs-on: ubuntu-latest
7
steps:
8
- uses: actions/checkout@v3
9
- uses: actions/setup-node@v3
10
with:
- node-version: '16.16'
11
- cache: 'npm'
+ node-version: "16.16"
12
+ cache: "npm"
13
- run: npm ci
14
- run: npm run build
15
- uses: ./ # Uses the action in the root directory
16
id: demo
17
- app_id: ${{ secrets.APP_ID }}
18
- private_key: ${{ secrets.PRIVATE_KEY }}
+ app_id: ${{ vars.TEST_APP_ID }}
19
+ private_key: ${{ secrets.TEST_APP_PRIVATE_KEY }}
20
- uses: octokit/[email protected]
21
id: get-repository
22
env:
0 commit comments