Skip to content

Commit

Permalink
wiring up github action to dmno
Browse files Browse the repository at this point in the history
  • Loading branch information
theoephraim committed Sep 3, 2024
1 parent 6a9e666 commit d5f0734
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 8
version: 9
run_install: false

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

- name: Test
run: pnpm run test --ci --runInBand --reporters=default --reporters=jest-junit --coverage
run: pnpm run test
env:
CI: 1
NODE_ENV: ci
JEST_JUNIT_OUTPUT: "reports/junit/js-test-results.xml"
DMNO_VAULT_KEY: ${{ secrets.DMNO_VAULT_KEY }}

- uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/test/manage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ describe('Managing doc info and sheets', () => {
});
});

describe.only('data validation rules', () => {
describe('data validation rules', () => {
let sheet: GoogleSpreadsheetWorksheet;

beforeAll(async () => {
Expand Down

0 comments on commit d5f0734

Please sign in to comment.