Skip to content

Commit aba3d82

Browse files
Create test.yml
1 parent 65955e6 commit aba3d82

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Test
2+
on:
3+
push:
4+
branches:
5+
- '*'
6+
pull_request:
7+
workflow_dispatch:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Node.js setup
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: 18
20+
21+
- run: npm install
22+
23+
- run: npm run lint

0 commit comments

Comments
 (0)