Skip to content

Commit 5fcabb6

Browse files
authored
Create test.yml
1 parent a705570 commit 5fcabb6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# .github/workflows/test.yml
2+
name: Tests
3+
4+
on:
5+
push:
6+
branches: [test]
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-node@v3
15+
with:
16+
node-version: 18
17+
- name: Install dependencies
18+
run: npm ci
19+
- name: Run tests
20+
run: npm run test

0 commit comments

Comments
 (0)