Skip to content

Commit d0b358a

Browse files
authored
Merge pull request #58 from 27Bslash6/fix/deps-security-tests
2 parents 71e80ea + b5daf47 commit d0b358a

File tree

7 files changed

+3880
-472
lines changed

7 files changed

+3880
-472
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: '20'
20+
21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Run tests
25+
run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ yarn-error.log
3939
# Ignore coverage and test reports
4040
.coverage
4141
coverage.xml
42+
coverage/
4243
*.cover
4344
*.pyc
4445

0 commit comments

Comments
 (0)