Skip to content

Commit eef0ded

Browse files
author
ARKTD
authored
Create tests.yml
1 parent 17048f5 commit eef0ded

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Test Methods
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
run-tests:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 22
17+
registry-url: https://registry.npmjs.org/
18+
cache: 'npm'
19+
- name: Run tests
20+
run: npm test

0 commit comments

Comments
 (0)