blob: 0c3b793340ee1cefa6f273deab142c17c103340e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name: uses-action-with-pre-and-post-step
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./uses-action-with-pre-and-post-step/last-action
- uses: nektos/act-test-actions/js-with-pre-and-post-step@main
with:
pre: true
post: true
- run: |
cat $GITHUB_ENV
|