summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/uses-composite-with-pre-and-post-steps/last-action/post.js
blob: bc6d7edc8c29d6fc93da3f92b85282e5e2bfbe69 (plain)
1
2
3
4
5
6
7
const output = process.env['STEP_OUTPUT_TEST'];
const expected = 'empty;step1;step2;step2-post;step1-post';

console.log(output);
if (output !== expected) {
  throw new Error(`Expected '${expected}' but got '${output}'`);
}