24 Zeilen
452 B
YAML
24 Zeilen
452 B
YAML
|
---
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
jobs:
|
||
|
test_1:
|
||
|
runs-on: host
|
||
|
steps:
|
||
|
- name: Test OS
|
||
|
shell: sh
|
||
|
run: |
|
||
|
node <<EOF
|
||
|
console.log(process.env.RUNNER_OS)
|
||
|
EOF
|
||
|
env | grep RUNNER_OS
|
||
|
test_2:
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- name: Test OS
|
||
|
shell: sh
|
||
|
run: |
|
||
|
node <<EOF
|
||
|
console.log(process.env.RUNNER_OS)
|
||
|
EOF
|
||
|
env | grep RUNNER_OS
|