Skip to content

Commit e86a234

Browse files
authored
Try node build (#4)
1 parent d493f39 commit e86a234

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,22 @@ jobs:
77
runs-on: self-hosted
88

99
steps:
10+
- name: Test actions/checkout
11+
uses: actions/checkout@v4
12+
1013
- name: CPU info
1114
run: |
1215
uname -m
1316
cat /proc/cpuinfo
1417
1518
- name: OS info
1619
run: cat /etc/os-release
20+
21+
- name: Crete a text file
22+
run: echo 123 > file.txt
23+
24+
- name: Test actions/upload-artifact
25+
uses: actions/upload-artifact@v4
26+
with:
27+
name: file
28+
path: file.txt

0 commit comments

Comments
 (0)