Skip to content

Commit 48a126d

Browse files
committed
Add build step to demo.yml
1 parent f27b38e commit 48a126d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.github/workflows/demo.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3
8+
- uses: actions/setup-node@v3
9+
with:
10+
node-version: '16.16'
11+
cache: 'npm'
12+
- run: npm ci
13+
- run: npm run build
814
- uses: ./ # Uses the action in the root directory
915
id: demo
1016
with:

dist/post.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5928,6 +5928,7 @@ async function post(core3, request2) {
59285928
authorization: `token ${token}`
59295929
}
59305930
});
5931+
core3.info("Token revoked");
59315932
}
59325933

59335934
// post.js

0 commit comments

Comments
 (0)