25 Zeilen
Kein EOL
462 B
YAML
25 Zeilen
Kein EOL
462 B
YAML
---
|
|
on:
|
|
- push
|
|
- 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 |