summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/uses-action-with-pre-and-post-step/last-action/post.js
blob: e147e37d297b55c31beafb97dbe64a72486a11ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const pre = process.env['ACTION_OUTPUT_PRE'];
const main = process.env['ACTION_OUTPUT_MAIN'];
const post = process.env['ACTION_OUTPUT_POST'];

console.log({pre, main, post});

if (pre !== 'pre') {
  throw new Error(`Expected 'pre' but got '${pre}'`);
}

if (main !== 'main') {
  throw new Error(`Expected 'main' but got '${main}'`);
}

if (post !== 'post') {
  throw new Error(`Expected 'post' but got '${post}'`);
}