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 e805dc4 commit 1b3a5e9Copy full SHA for 1b3a5e9
.github/workflows/ci.yaml
@@ -36,6 +36,8 @@ jobs:
36
steps:
37
- name: Checkout repository
38
uses: actions/checkout@v4
39
+ with:
40
+ fetch-depth: 0
41
42
- name: Check if bundled
43
run: |
@@ -46,7 +48,6 @@ jobs:
46
48
47
49
- name: Check if dist/index.js is updated in PR
50
- git fetch origin ${{ github.base_ref }}
51
if ! git diff --name-only origin/${{ github.base_ref }}...HEAD | grep -q '^dist/index.js$'; then
52
echo "dist/index.js was not updated in this PR. Please update the bundle.";
53
exit 1;
action.yaml
@@ -21,5 +21,5 @@ inputs:
21
description: A regex pattern to validate the subject of the commit message.
22
default: ""
23
runs:
24
- using: node22
+ using: node20
25
main: dist/index.js
0 commit comments