Skip to content

Commit bef71bc

Browse files
committed
Run all tests in CI, don't fail build if not all pass
1 parent 1391643 commit bef71bc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ jobs:
6464
SA_PASSWORD: ${{ secrets.SA_PASSWORD }}
6565

6666
- name: Run tests
67-
run: npm run test:ci
67+
run: npm run test
68+
continue-on-error: true
6869
env:
6970
SQLONFHIR_TEST_PATH: ./sqlonfhir/tests
7071
MSSQL_HOST: localhost

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
"cli:load": "tsx src/cli.ts load",
2323
"cli:transpile": "tsx src/cli.ts transpile",
2424
"test": "vitest run",
25-
"test:ci": "vitest run --testNamePattern '^(?!.*#experimental)'",
2625
"test:watch": "vitest",
2726
"test:ui": "vitest --ui",
2827
"coverage": "vitest run --coverage",

0 commit comments

Comments
 (0)