Skip to content

Commit ec5db52

Browse files
Create first.yml
1 parent ccb8890 commit ec5db52

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/first.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: First Workflow
2+
on: [push]
3+
4+
jobs:
5+
run-shell-commands:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: echo a string
9+
run: echo "Hello World"
10+
- name: Multiline Command
11+
run: |
12+
node -v
13+
npm -v

0 commit comments

Comments
 (0)