github CI test
This commit is contained in:
36
.github/workflows/integrationtest.yml
vendored
Normal file
36
.github/workflows/integrationtest.yml
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
name: "Build & Test"
|
||||
|
||||
on: [push]
|
||||
|
||||
# on:
|
||||
# # pull_request:
|
||||
# # branches:
|
||||
# # - "master"
|
||||
# push:
|
||||
# branches:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: "Build, Test & Validate"
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: "Checkout source code"
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install
|
||||
run: npm ci --ignore-scripts
|
||||
|
||||
- name: Build
|
||||
run: npm run build
|
||||
|
||||
- name: Test
|
||||
run: npm run test
|
||||
env:
|
||||
API_KEY_COM: ${{ secrets.API_KEY_COM }}
|
||||
API_SECRET_COM: ${{ secrets.API_SECRET_COM }}
|
||||
@@ -6,10 +6,10 @@ module.exports = {
|
||||
__PROD__: false
|
||||
},
|
||||
testEnvironment: 'node',
|
||||
preset: "ts-jest",
|
||||
preset: 'ts-jest',
|
||||
verbose: true, // report individual test
|
||||
bail: false, // enable to stop test when an error occur,
|
||||
detectOpenHandles: false,
|
||||
detectOpenHandles: true,
|
||||
moduleDirectories: ['node_modules', 'src', 'test'],
|
||||
testMatch: ['**/test/**/*.test.ts?(x)'],
|
||||
testPathIgnorePatterns: ['node_modules/', 'dist/', '.json'],
|
||||
@@ -25,4 +25,4 @@ module.exports = {
|
||||
statements: -10
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user