Skip to content

Commit 8535cf3

Browse files
authored
Merge pull request #13 from thinkasany/master
ci: auto run test
2 parents 3cc5d7f + 4735e06 commit 8535cf3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
ci:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Use Node.js 20.x
13+
uses: actions/setup-node@v3
14+
with:
15+
node-version: 20.x
16+
17+
- name: ci
18+
run: |
19+
npm install
20+
npm run test

0 commit comments

Comments
 (0)