Skip to content

Commit

Permalink
Adds integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dianabarsan committed Feb 2, 2024
1 parent 554d79b commit 7ada6bc
Show file tree
Hide file tree
Showing 9 changed files with 784 additions and 45 deletions.
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@
"test/**/*.js"
],
"rules": {
"node/no-unpublished-require": "off"
"node/no-unpublished-require": "off",
"no-console": "off"
}
}
]
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,15 @@ jobs:
node-version: 16.x
- run: npm ci
- run: npm run test

integration:
name: Integration
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm ci
- run: npm run integration
Loading

0 comments on commit 7ada6bc

Please sign in to comment.