22 lines
687 B
YAML
22 lines
687 B
YAML
|
on: push
|
||
|
jobs:
|
||
|
_:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: nektos/act-test-actions/script@main
|
||
|
with:
|
||
|
pre: |
|
||
|
env
|
||
|
echo mystate0=mystateval > $GITHUB_STATE
|
||
|
echo "::save-state name=mystate1::mystateval"
|
||
|
main: |
|
||
|
env
|
||
|
echo mystate2=mystateval > $GITHUB_STATE
|
||
|
echo "::save-state name=mystate3::mystateval"
|
||
|
post: |
|
||
|
env
|
||
|
# Enable once https://github.com/nektos/act/issues/1459 is fixed
|
||
|
# [ "$STATE_mystate0" = "mystateval" ]
|
||
|
# [ "$STATE_mystate1" = "mystateval" ]
|
||
|
[ "$STATE_mystate2" = "mystateval" ]
|
||
|
[ "$STATE_mystate3" = "mystateval" ]
|