Skip to content

Commit 2e48328

Browse files
authored
Create test-ts.yml
Why is documentation non-existent for every build system ever?
1 parent c5ad7c3 commit 2e48328

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test-ts.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v2
12+
- name: npm test
13+
run: echo Hello, world!
14+
- name: Run a multi-line script
15+
run: |
16+
npm install
17+
npm test

0 commit comments

Comments
 (0)