Skip to content

Commit d5f0734

Browse files
committed
wiring up github action to dmno
1 parent 6a9e666 commit d5f0734

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: pnpm/action-setup@v4
3232
name: Install pnpm
3333
with:
34-
version: 8
34+
version: 9
3535
run_install: false
3636

3737
- name: Get pnpm store directory
@@ -54,10 +54,12 @@ jobs:
5454
run: pnpm run lint --format junit -o reports/junit/js-lint-results.xml
5555

5656
- name: Test
57-
run: pnpm run test --ci --runInBand --reporters=default --reporters=jest-junit --coverage
57+
run: pnpm run test
5858
env:
59+
CI: 1
5960
NODE_ENV: ci
6061
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
62+
DMNO_VAULT_KEY: ${{ secrets.DMNO_VAULT_KEY }}
6163

6264
- uses: actions/upload-artifact@v4
6365
with:

src/test/manage.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ describe('Managing doc info and sheets', () => {
192192
});
193193
});
194194

195-
describe.only('data validation rules', () => {
195+
describe('data validation rules', () => {
196196
let sheet: GoogleSpreadsheetWorksheet;
197197

198198
beforeAll(async () => {

0 commit comments

Comments
 (0)