This commit is contained in:
parent
d46e0d834e
commit
0ef8c6e641
1 changed files with 9 additions and 2 deletions
|
@ -16,12 +16,19 @@ jobs:
|
||||||
run: pnpm run test --ignore-only
|
run: pnpm run test --ignore-only
|
||||||
- name: Sanity check it detects this CI
|
- name: Sanity check it detects this CI
|
||||||
run: |
|
run: |
|
||||||
if node index.js; then
|
if node in.js; then
|
||||||
echo "Success"
|
echo "in.js: Success"
|
||||||
else
|
else
|
||||||
echo "Failed for forgejo"
|
echo "Failed for forgejo"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if node not.js; then
|
||||||
|
echo "Failed for forgejo"
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "not.js: Success"
|
||||||
|
fi
|
||||||
- name: Deply if new version
|
- name: Deply if new version
|
||||||
run: |
|
run: |
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Reference in a new issue